Merge branch 'revert-karma-timeout' into 'master'

Increase karma global timeout

See merge request gitlab-org/gitlab-ce!28850
This commit is contained in:
Grzegorz Bizon 2019-05-29 08:25:27 +00:00
commit 4a9387242d
2 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
describe('discussion note', () => {
@ -230,7 +230,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
});

View File

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