mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 12:22:29 +00:00
### Description - We are using gql instead of strings to be able to see the graphql code highlighted ### Demo  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>
58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import request from 'supertest';
|
|
|
|
const client = request(`http://localhost:${APP_PORT}`);
|
|
|
|
describe('commentsResolver (e2e)', () => {
|
|
it('should find many comments', () => {
|
|
const queryData = {
|
|
query: `
|
|
query comments {
|
|
comments {
|
|
edges {
|
|
node {
|
|
body
|
|
id
|
|
createdAt
|
|
updatedAt
|
|
deletedAt
|
|
authorId
|
|
activityId
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
|
|
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.comments;
|
|
|
|
expect(data).toBeDefined();
|
|
expect(Array.isArray(data.edges)).toBe(true);
|
|
|
|
const edges = data.edges;
|
|
|
|
if (edges.length > 0) {
|
|
const comments = edges[0].node;
|
|
|
|
expect(comments).toHaveProperty('body');
|
|
expect(comments).toHaveProperty('id');
|
|
expect(comments).toHaveProperty('createdAt');
|
|
expect(comments).toHaveProperty('updatedAt');
|
|
expect(comments).toHaveProperty('deletedAt');
|
|
expect(comments).toHaveProperty('authorId');
|
|
expect(comments).toHaveProperty('activityId');
|
|
}
|
|
});
|
|
});
|
|
});
|