Fix storybook tests (#5487)

Fixes #5486

---------

Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com>
Co-authored-by: v1b3m <vibenjamin6@gmail.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
gitstart-twenty
2024-05-22 02:24:08 +08:00
committed by GitHub
parent e47101e08b
commit 36b467d301
16 changed files with 709 additions and 101 deletions

View File

@ -49,6 +49,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: true,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',
@ -93,6 +94,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
nameSingular: 'viewField',
namePlural: 'viewFields',
isSystem: true,
isRemote: false,
},
},
},
@ -110,6 +112,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: false,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',
@ -132,6 +135,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: true,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',
@ -154,6 +158,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: false,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',
@ -176,6 +181,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: false,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',
@ -198,6 +204,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: false,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',
@ -220,6 +227,7 @@ const customObjectMetadataItemEdge: ObjectEdge = {
isCustom: false,
isActive: true,
isSystem: true,
options: null,
isNullable: false,
createdAt: '2024-04-08T12:48:49.538Z',
updatedAt: '2024-04-08T12:48:49.538Z',

View File

@ -0,0 +1,104 @@
import {
TimelineCalendarEvent,
TimelineCalendarEventVisibility,
} from '~/generated-metadata/graphql';
export const mockedTimelineCalendarEvents: TimelineCalendarEvent[] = [
{
__typename: 'TimelineCalendarEvent',
id: '20202020-2e3f-45a2-ab16-b580ff4f83e7',
title: 'Jane',
description: 'Tests techniques',
location: '',
startsAt: '2024-05-16T12:00:00.000Z',
endsAt: '2024-05-16T13:00:00.000Z',
conferenceLink: {
url: 'https://meet.google.com/xxx-xxx-xxx',
label: 'Rejoindre la visio',
},
conferenceSolution: 'GOOGLE_MEET',
isCanceled: false,
visibility: TimelineCalendarEventVisibility.ShareEverything,
isFullDay: false,
participants: [
{
__typename: 'TimelineCalendarEventParticipant',
personId: null,
workspaceMemberId: '20202020-78c5-4cbb-87a8-f9cd3ad4d8af',
firstName: 'Tim',
lastName: 'Apple',
displayName: 'Tim',
avatarUrl: '',
handle: 'tim@apple.dev',
},
{
__typename: 'TimelineCalendarEventParticipant',
personId: null,
workspaceMemberId: '20202020-3cf7-453e-a5f4-28f8412e70f0',
firstName: 'Jane',
lastName: 'Doe',
displayName: 'Jane',
avatarUrl: '',
handle: 'jane@apple.dev',
},
],
},
{
__typename: 'TimelineCalendarEvent',
id: '20202020-1020-42d6-8444-541f5e57a7e5',
title: '',
description: '',
location: '',
startsAt: '2024-05-08T12:00:00.000Z',
endsAt: '2024-05-08T12:25:00.000Z',
isFullDay: false,
conferenceLink: {
url: 'https://meet.google.com/xxx-xxx-xxx',
label: 'Rejoindre la visio',
},
conferenceSolution: 'GOOGLE_MEET',
isCanceled: false,
visibility: TimelineCalendarEventVisibility.Metadata,
participants: [
{
__typename: 'TimelineCalendarEventParticipant',
personId: null,
workspaceMemberId: '20202020-78c5-4cbb-87a8-f9cd3ad4d8af',
firstName: 'Tim',
lastName: 'Apple',
displayName: 'Tim',
avatarUrl: '',
handle: 'tim@apple.dev',
},
],
},
{
__typename: 'TimelineCalendarEvent',
id: '20202020-fa61-4d82-b47f-90cca16514e3',
title: '',
description: '',
location: '',
startsAt: '2024-05-06T12:00:00.000Z',
endsAt: '2024-05-06T12:25:00.000Z',
isFullDay: false,
conferenceLink: {
url: 'https://meet.google.com/xxx-xxx-xxx',
label: 'Rejoindre la visio',
},
conferenceSolution: 'GOOGLE_MEET',
isCanceled: false,
visibility: TimelineCalendarEventVisibility.Metadata,
participants: [
{
__typename: 'TimelineCalendarEventParticipant',
personId: null,
workspaceMemberId: '20202020-78c5-4cbb-87a8-f9cd3ad4d8af',
firstName: 'Tim',
lastName: 'Apple',
displayName: 'Tim',
avatarUrl: '',
handle: 'tim@apple.dev',
},
],
},
];