Skip to content

Commit f98d467

Browse files
authored
increasing tests timeout
* increasing tests timeout * linting
1 parent 28fd8fa commit f98d467

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/smoke.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ describe('JWT Generator API', () => {
148148

149149
const ASYMMETRIC_ALGORITHMS = ['RS256', 'RS384', 'RS512', 'ES256', 'ES384', 'ES512', 'PS256', 'PS384', 'PS512']
150150
ASYMMETRIC_ALGORITHMS.forEach(algorithm => {
151-
it(`should get valid ${algorithm} key`, async () => {
151+
it(`should get valid ${algorithm} key`, async function () {
152+
this.timeout(5000)
153+
152154
const url = `http://localhost:3000/api/generate/${algorithm}`
153155

154156
const options = {

0 commit comments

Comments
 (0)