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

@@ -62,9 +62,7 @@ export const blocksField: Field = {
const BlockFields: CollectionConfig = {
slug: 'block-fields',
fields: [
blocksField,
],
fields: [blocksField],
};
export const blocksFieldSeedData = [

View File

@@ -32,5 +32,4 @@ export const conditionalLogicDoc = {
fieldToToggle: 'spiderman',
};
export default ConditionalLogic;

View File

@@ -37,5 +37,4 @@ export const pointDoc = {
group: { point: [1, 9] },
};
export default PointFields;

View File

@@ -166,5 +166,4 @@ export const richTextDoc = {
],
};
export default RichTextFields;

View File

@@ -33,9 +33,7 @@ const TabsFields: CollectionConfig = {
{
label: 'Tab with Blocks',
description: 'Blocks are rendered here to ensure they populate and render correctly.',
fields: [
blocksField,
],
fields: [blocksField],
},
{
label: 'Tab with Group',
@@ -95,7 +93,7 @@ const TabsFields: CollectionConfig = {
export const tabsDoc = {
array: [
{
text: 'Hello, I\'m the first row',
text: "Hello, I'm the first row",
},
{
text: 'Second row here',

View File

@@ -18,5 +18,4 @@ export const textDoc = {
text: 'Seeded text document',
};
export default TextFields;