Skip to content

Commit

Permalink
Increase timeouts to fix random failes for very very slow tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
CeEv committed Nov 26, 2024
1 parent 3712c34 commit b9d8344
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('Alert Controller api', () => {

const { data } = response.body as AlertResponse;
expect(data.length).toBe(2);
});
}, 10000);
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('PseudonymController (API)', () => {
const response: Response = await testApiClient.get(new ObjectId().toHexString());

expect(response.statusCode).toEqual(HttpStatus.UNAUTHORIZED);
});
}, 10000);
});

describe('when valid params are given', () => {
Expand Down

0 comments on commit b9d8344

Please sign in to comment.