Fix perf tests storybook (#6584)

As title
This commit is contained in:
Thomas Trompette
2024-08-08 21:43:02 +02:00
committed by GitHub
parent b4e2ada3b0
commit ab12d9e8da
12 changed files with 195 additions and 57 deletions

View File

@ -132,6 +132,37 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
secondaryLinks: null,
},
},
testSelect: {
__typename: 'Select',
value: 'Option 1',
label: 'Option 1',
},
testMultiSelect: {
__typename: 'MultiSelect',
values: [
{
__typename: 'Select',
value: 'Option 1',
label: 'Option 1',
},
],
},
testRating: {
__typename: 'Rating',
value: 3,
},
testJson: {
__typename: 'Json',
value: {
key: 'value',
},
},
testActor: {
__typename: 'Actor',
source: 'MANUAL',
workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7',
name: 'Tim Apple',
},
},
},
{
@ -228,6 +259,37 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
secondaryLinks: null,
},
},
testSelect: {
__typename: 'Select',
value: 'Option 1',
label: 'Option 1',
},
testMultiSelect: {
__typename: 'MultiSelect',
values: [
{
__typename: 'Select',
value: 'Option 1',
label: 'Option 1',
},
],
},
testRating: {
__typename: 'Rating',
value: 3,
},
testJson: {
__typename: 'Json',
value: {
key: 'value',
},
},
testActor: {
__typename: 'Actor',
source: 'MANUAL',
workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7',
name: 'Tim Apple',
},
},
},
{