mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 04:12:28 +00:00
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import request from 'supertest';
|
|
|
|
const client = request(`http://localhost:${APP_PORT}`);
|
|
|
|
describe('attachmentsResolver (e2e)', () => {
|
|
it('should find many attachments', () => {
|
|
const queryData = {
|
|
query: `
|
|
query attachments {
|
|
attachments {
|
|
edges {
|
|
node {
|
|
name
|
|
fullPath
|
|
type
|
|
id
|
|
createdAt
|
|
updatedAt
|
|
deletedAt
|
|
authorId
|
|
taskId
|
|
noteId
|
|
personId
|
|
companyId
|
|
opportunityId
|
|
rocketId
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
|
|
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.attachments;
|
|
|
|
expect(data).toBeDefined();
|
|
expect(Array.isArray(data.edges)).toBe(true);
|
|
|
|
const edges = data.edges;
|
|
|
|
if (edges.length > 0) {
|
|
const attachments = edges[0].node;
|
|
|
|
expect(attachments).toHaveProperty('name');
|
|
expect(attachments).toHaveProperty('fullPath');
|
|
expect(attachments).toHaveProperty('type');
|
|
expect(attachments).toHaveProperty('id');
|
|
expect(attachments).toHaveProperty('createdAt');
|
|
expect(attachments).toHaveProperty('updatedAt');
|
|
expect(attachments).toHaveProperty('deletedAt');
|
|
expect(attachments).toHaveProperty('authorId');
|
|
expect(attachments).toHaveProperty('taskId');
|
|
expect(attachments).toHaveProperty('noteId');
|
|
expect(attachments).toHaveProperty('personId');
|
|
expect(attachments).toHaveProperty('companyId');
|
|
expect(attachments).toHaveProperty('opportunityId');
|
|
expect(attachments).toHaveProperty('rocketId');
|
|
}
|
|
});
|
|
});
|
|
});
|