Files
payloadcms/test/e2e/fields/shared.ts
2022-07-13 14:45:10 -07:00

46 lines
643 B
TypeScript

export const arrayDoc = {
array: [
{
text: 'first row',
},
{
text: 'second row',
},
{
text: 'third row',
},
{
text: 'fourth row',
},
{
text: 'fifth row',
},
{
text: 'sixth row',
},
],
};
export const blocksDoc = {
blocks: [
{
blockName: 'First block',
blockType: 'text',
text: 'first block',
},
{
blockName: 'Second block',
blockType: 'number',
number: 342,
},
],
};
export const textDoc = {
text: 'Seeded text document',
};
export const collapsibleDoc = {
text: 'Seeded collapsible doc',
};