Files
twenty/packages/twenty-server/test/integration/graphql/suites/object-generated/search-calendar-event-participants.integration-spec.ts
gitstart-app[bot] 58fd34071c [Server Integration tests] Enrich integration GraphQL API tests (#7699)
### Description

- We are using gql instead of strings to be able to see the graphql code
highlighted

### Demo


![](https://assets-service.gitstart.com/28455/d06016b9-c62c-4e0d-bb16-3d7dd42c5b6b.png)

Fixes #7526

---------

Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
2024-10-17 19:16:19 +02:00

72 lines
2.3 KiB
TypeScript

import request from 'supertest';
const client = request(`http://localhost:${APP_PORT}`);
describe('searchCalendarEventParticipantsResolver (e2e)', () => {
it('should find many searchCalendarEventParticipants', () => {
const queryData = {
query: `
query searchCalendarEventParticipants {
searchCalendarEventParticipants {
edges {
node {
handle
displayName
isOrganizer
responseStatus
id
createdAt
updatedAt
deletedAt
calendarEventId
personId
workspaceMemberId
}
}
}
}
`,
};
return client
.post('/graphql')
.set('Authorization', `Bearer ${ACCESS_TOKEN}`)
.send(queryData)
.expect(200)
.expect((res) => {
expect(res.body.data).toBeDefined();
expect(res.body.errors).toBeUndefined();
})
.expect((res) => {
const data = res.body.data.searchCalendarEventParticipants;
expect(data).toBeDefined();
expect(Array.isArray(data.edges)).toBe(true);
const edges = data.edges;
if (edges.length > 0) {
const searchCalendarEventParticipants = edges[0].node;
expect(searchCalendarEventParticipants).toHaveProperty('handle');
expect(searchCalendarEventParticipants).toHaveProperty('displayName');
expect(searchCalendarEventParticipants).toHaveProperty('isOrganizer');
expect(searchCalendarEventParticipants).toHaveProperty(
'responseStatus',
);
expect(searchCalendarEventParticipants).toHaveProperty('id');
expect(searchCalendarEventParticipants).toHaveProperty('createdAt');
expect(searchCalendarEventParticipants).toHaveProperty('updatedAt');
expect(searchCalendarEventParticipants).toHaveProperty('deletedAt');
expect(searchCalendarEventParticipants).toHaveProperty(
'calendarEventId',
);
expect(searchCalendarEventParticipants).toHaveProperty('personId');
expect(searchCalendarEventParticipants).toHaveProperty(
'workspaceMemberId',
);
}
});
});
});