Raise timeout for Karma tests to 2 seconds

This commit is contained in:
Winnie Hellmann 2018-08-01 15:30:12 +00:00
parent 83a0db0c55
commit 0abae9eeb5

View file

@ -98,7 +98,7 @@ let longRunningTestTimeoutHandle;
beforeEach((done) => {
longRunningTestTimeoutHandle = setTimeout(() => {
done.fail('Test is running too long!');
}, 1000);
}, 2000);
done();
});