added timeout to failing test
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
ccf3366e1a
commit
9be7d46fb2
|
@ -8,5 +8,5 @@ fdescribe('account changePassword()', () => {
|
||||||
|
|
||||||
expect(err).toBeDefined();
|
expect(err).toBeDefined();
|
||||||
expect(err).toEqual('Invalid password');
|
expect(err).toEqual('Invalid password');
|
||||||
});
|
}, 40000);
|
||||||
});
|
});
|
||||||
|
|
|
@ -54,7 +54,6 @@ async function test() {
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jasmine.exitOnCompletion = false;
|
jasmine.exitOnCompletion = false;
|
||||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = 40000;
|
|
||||||
await jasmine.execute();
|
await jasmine.execute();
|
||||||
if (app) await app.disconnect();
|
if (app) await app.disconnect();
|
||||||
if (container) await container.rm();
|
if (container) await container.rm();
|
||||||
|
|
Loading…
Reference in New Issue