Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tnramalho committed Jun 28, 2024
1 parent 0da9069 commit c42e2b0
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,19 +217,18 @@ describe('CacheAssignmentController (e2e)', () => {
.post('/cache/user')
.send(payload)
.expect(400);
payload.assignee = { id: ''};

payload.assignee = { id: '' };
await supertest(app.getHttpServer())
.post('/cache/user')
.send(payload)
.expect(500);

payload.assignee = null;
await supertest(app.getHttpServer())
.post('/cache/user')
.send(payload)
.expect(400);

});

it('POST /cache/user Update', async () => {
Expand Down

0 comments on commit c42e2b0

Please sign in to comment.