mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-02 10:04:09 +03:00
d8c4af9279
Fix all the broken CIs :p This includes an ongoing effort to simplify test maintenance by having 1 unique source of truth about metadata and data mocks (that will later be generated from a unique source of seeds: dev = demo = test) Regressions: - Unit line coverage: 60 > 55 - Storybook Pages branch coverage: 40 > 35 We will need to write tests to increase those coverage - RelationFieldDisplay perf: 0.2ms to 0.22ms > We might have a regression here - Removed perf story about RawJSON > We will need to re-add it
78 lines
2.2 KiB
TypeScript
78 lines
2.2 KiB
TypeScript
import request from 'supertest';
|
|
|
|
const client = request(`http://localhost:${APP_PORT}`);
|
|
|
|
describe('peopleResolver (integration)', () => {
|
|
it('should find many people', () => {
|
|
const queryData = {
|
|
query: `
|
|
query people {
|
|
people {
|
|
edges {
|
|
node {
|
|
jobTitle
|
|
phones {
|
|
primaryPhoneNumber
|
|
primaryPhoneCountryCode
|
|
}
|
|
city
|
|
avatarUrl
|
|
position
|
|
id
|
|
createdAt
|
|
updatedAt
|
|
deletedAt
|
|
companyId
|
|
intro
|
|
whatsapp {
|
|
primaryPhoneNumber
|
|
}
|
|
workPreference
|
|
performanceRating
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
|
|
return client
|
|
.post('/graphql')
|
|
.set('Authorization', `Bearer ${ACCESS_TOKEN}`)
|
|
.send(queryData)
|
|
.expect(200)
|
|
.expect((res) => {
|
|
console.log(res.body);
|
|
expect(res.body.data).toBeDefined();
|
|
expect(res.body.errors).toBeUndefined();
|
|
})
|
|
.expect((res) => {
|
|
const data = res.body.data.people;
|
|
|
|
expect(data).toBeDefined();
|
|
expect(Array.isArray(data.edges)).toBe(true);
|
|
|
|
const edges = data.edges;
|
|
|
|
if (edges.length > 0) {
|
|
const people = edges[0].node;
|
|
|
|
expect(people).toHaveProperty('jobTitle');
|
|
expect(people).toHaveProperty('phones');
|
|
expect(people).toHaveProperty('city');
|
|
expect(people).toHaveProperty('avatarUrl');
|
|
expect(people).toHaveProperty('position');
|
|
expect(people).toHaveProperty('id');
|
|
expect(people).toHaveProperty('createdAt');
|
|
expect(people).toHaveProperty('updatedAt');
|
|
expect(people).toHaveProperty('deletedAt');
|
|
expect(people).toHaveProperty('companyId');
|
|
expect(people).toHaveProperty('intro');
|
|
expect(people).toHaveProperty('whatsapp');
|
|
expect(people).toHaveProperty('workPreference');
|
|
expect(people).toHaveProperty('performanceRating');
|
|
}
|
|
});
|
|
});
|
|
});
|