diff options
author | Heinrich Lee Yu <heinrich@gitlab.com> | 2019-05-28 17:18:29 +0800 |
---|---|---|
committer | Heinrich Lee Yu <heinrich@gitlab.com> | 2019-05-28 17:59:45 +0800 |
commit | d480fc51922e0a43da963493c80770f5c37a69dc (patch) | |
tree | e28e2576bd33f2755f0e850e9224e2e8a069d405 /spec | |
parent | 35dfe85f2d85504d5ca3a5426480bbd18c8ec93b (diff) | |
download | gitlab-ce-d480fc51922e0a43da963493c80770f5c37a69dc.tar.gz |
Increase timeout of flaky specs
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascripts/notes/components/note_app_spec.js | 4 |
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); }); }); |