799c7e6936
Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
122 lines
2.5 KiB
TypeScript
122 lines
2.5 KiB
TypeScript
import type { Post } from '@staticcms/cypress/interface';
|
|
|
|
export const entry1: Post = {
|
|
Title: 'first title',
|
|
Body: 'first body',
|
|
Description: 'first description',
|
|
Category: 'first category',
|
|
Tags: 'tag1',
|
|
};
|
|
|
|
export const entry2: Post = {
|
|
Title: 'second title',
|
|
Body: 'second body',
|
|
Description: 'second description',
|
|
Category: 'second category',
|
|
Tags: 'tag2',
|
|
};
|
|
|
|
export const entry3: Post = {
|
|
Title: 'third title',
|
|
Body: 'third body',
|
|
Description: 'third description',
|
|
Category: 'third category',
|
|
Tags: 'tag3',
|
|
};
|
|
|
|
export const entry4: Post = {
|
|
Title: 'fourth title',
|
|
Body: 'fourth body',
|
|
Description: 'fourth description',
|
|
Category: 'fourth category',
|
|
Tags: 'tag4',
|
|
};
|
|
|
|
export const entry5: Post = {
|
|
Title: 'fifth title',
|
|
Body: 'fifth body',
|
|
Description: 'fifth description',
|
|
Category: 'fifth category',
|
|
Tags: 'tag5',
|
|
};
|
|
|
|
export const entry6: Post = {
|
|
Title: 'sixth title',
|
|
Body: 'sixth body',
|
|
Description: 'sixth description',
|
|
Category: 'sixth category',
|
|
Tags: 'tag6',
|
|
};
|
|
|
|
export const entry7: Post = {
|
|
Title: 'seventh title',
|
|
Body: 'seventh body',
|
|
Description: 'seventh description',
|
|
Category: 'seventh category',
|
|
Tags: 'tag7',
|
|
};
|
|
|
|
export const entry8: Post = {
|
|
Title: 'eighth title',
|
|
Body: 'eighth body',
|
|
Description: 'eighth description',
|
|
Category: 'eighth category',
|
|
Tags: 'tag8',
|
|
};
|
|
|
|
export const entry9: Post = {
|
|
Title: 'nineth title',
|
|
Body: 'nineth body',
|
|
Description: 'nineth description',
|
|
Category: 'nineth category',
|
|
Tags: 'tag9',
|
|
};
|
|
|
|
export const entry10: Post = {
|
|
Title: 'tenth title',
|
|
Body: 'tenth body',
|
|
Description: 'tenth description',
|
|
Category: 'tenth category',
|
|
Tags: 'tag10',
|
|
};
|
|
|
|
export const entry11: Post = {
|
|
Title: 'eleventh title',
|
|
Body: 'eleventh body',
|
|
Description: 'eleventh description',
|
|
Category: 'eleventh category',
|
|
Tags: 'tag11',
|
|
};
|
|
|
|
export const entry12: Post = {
|
|
Title: 'twelveth title',
|
|
Body: 'twelveth body',
|
|
Description: 'twelveth description',
|
|
Category: 'twelveth category',
|
|
Tags: 'tag12',
|
|
};
|
|
|
|
export const entry13: Post = {
|
|
Title: 'thirteenth title',
|
|
Body: 'thirteenth body',
|
|
Description: 'thirteenth description',
|
|
Category: 'thirteenth category',
|
|
Tags: 'tag13',
|
|
};
|
|
|
|
export const entry14: Post = {
|
|
Title: 'fourteenth title',
|
|
Body: 'fourteenth body',
|
|
Description: 'fourteenth description',
|
|
Category: 'fourteenth category',
|
|
Tags: 'tag14',
|
|
};
|
|
|
|
export const entry15: Post = {
|
|
Title: 'fifteenth title',
|
|
Body: 'fifteenth body',
|
|
Description: 'fifteenth description',
|
|
Category: 'fifteenth category',
|
|
Tags: 'tag15',
|
|
};
|