summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2019-05-28 13:17:19 +0000
committerWinnie Hellmann <winnie@gitlab.com>2019-05-28 13:17:19 +0000
commitaff44baa506b18fc0592bdd8bb59bd5fd5d9363f (patch)
tree04303d29f121fafcfd58fe15f591ba403e9aa0aa
parentfe0907970732d90b6bbb880e1a2ad3c5b7cd2d38 (diff)
downloadgitlab-ce-winh-flaky-note_app_spec-timeout.tar.gz
Increase timeout for flaky tests in note_app_spec.jswinh-flaky-note_app_spec-timeout
-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 f04af04f852..c0815792939 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);
+ }, 3000);
});
describe('discussion note', () => {
@@ -230,7 +230,7 @@ describe('note_app', () => {
setTimeout(() => {
done();
});
- }, 2000);
+ }, 3000);
});
});