Skip to content
Snippets Groups Projects
Commit 4a938724 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

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

Increase karma global timeout

See merge request gitlab-org/gitlab-ce!28850
parents cd4eb5ac ede97703
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -195,7 +195,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
 
describe('discussion note', () => {
Loading
Loading
@@ -230,7 +230,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
}, 2000);
});
});
});
 
Loading
Loading
Loading
Loading
@@ -111,7 +111,7 @@ let longRunningTestTimeoutHandle;
beforeEach(done => {
longRunningTestTimeoutHandle = setTimeout(() => {
done.fail('Test is running too long!');
}, 2000);
}, 4000);
done();
});
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment