Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed Jan 30, 2025
1 parent a82b4ec commit cb922b4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ describe('Read Custom projects', () => {
// Then
expect(response.status).toBe(200);
expect(response.body.data.id).toBe(customProject.id);
const customProjectData = response.body.data as CustomProject;
expect(response.body.data).toEqual(customProjectData);
expect(response.body.data.user).toBeUndefined();
});

test('An authenticated user should be able to retrieve its custom projects', async () => {
Expand Down

0 comments on commit cb922b4

Please sign in to comment.