Raise timeout for Karma tests to 2 seconds
This commit is contained in:
parent
83a0db0c55
commit
0abae9eeb5
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ let longRunningTestTimeoutHandle;
|
|||
beforeEach((done) => {
|
||||
longRunningTestTimeoutHandle = setTimeout(() => {
|
||||
done.fail('Test is running too long!');
|
||||
}, 1000);
|
||||
}, 2000);
|
||||
done();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue