summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Lee Yu <heinrich@gitlab.com>2019-05-28 17:18:29 +0800
committerHeinrich Lee Yu <heinrich@gitlab.com>2019-05-28 17:59:45 +0800
commitd480fc51922e0a43da963493c80770f5c37a69dc (patch)
treee28e2576bd33f2755f0e850e9224e2e8a069d405
parent35dfe85f2d85504d5ca3a5426480bbd18c8ec93b (diff)
downloadgitlab-ce-d480fc51922e0a43da963493c80770f5c37a69dc.tar.gz
Increase timeout of flaky specs
-rw-r--r--spec/javascripts/notes/components/note_app_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/javascripts/notes/components/note_app_spec.js b/spec/javascripts/notes/components/note_app_spec.js
index ef876dc2941..f04af04f852 100644
--- a/spec/javascripts/notes/components/note_app_spec.js
+++ b/spec/javascripts/notes/components/note_app_spec.js
@@ -195,7 +195,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
- });
+ }, 2000);
});
describe('discussion note', () => {
@@ -230,7 +230,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
- });
+ }, 2000);
});
});