chore: run prettier on entire test dir

This commit is contained in:
Elliot DeNolf
2022-07-17 08:20:01 -07:00
parent bc9de859c4
commit fa9bd6191c
27 changed files with 181 additions and 245 deletions

View File

@@ -36,9 +36,7 @@ describe('array-update', () => {
},
});
const arrayWithExistingValues = [
...doc.array,
];
const arrayWithExistingValues = [...doc.array];
const updatedText = 'this is some new text for the first item in array';
@@ -47,7 +45,6 @@ describe('array-update', () => {
required: updatedText,
};
const updatedDoc = await payload.update<ArrayCollection>({
id: doc.id,
collection,