Commit 4a938724 authored by Grzegorz Bizon's avatar Grzegorz Bizon

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

Increase karma global timeout

See merge request gitlab-org/gitlab-ce!28850
parents cd4eb5ac ede97703
......@@ -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