Commit b983bc46 authored by Grzegorz Bizon's avatar Grzegorz Bizon

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

[EE] Increase karma global timeout

See merge request gitlab-org/gitlab-ee!13549
parents 72c98b23 5502c627
......@@ -195,7 +195,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
describe('discussion note', () => {
......@@ -230,7 +230,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
});
......
......@@ -111,7 +111,7 @@ let longRunningTestTimeoutHandle;
beforeEach(done => {
longRunningTestTimeoutHandle = setTimeout(() => {
done.fail('Test is running too long!');
}, 2000);
}, 4000);
done();
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment