summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2019-05-30 00:12:25 +0200
committerWinnie Hellmann <winnie@gitlab.com>2019-05-30 00:12:25 +0200
commit671cde4e8c2d446eec256e50175179e7e7ee3cee (patch)
tree2e2e80aad52411a89ee8eb10b3b9e44ca2310988
parent9706f9525f3067ae940444acfa2b986e77a41572 (diff)
downloadgitlab-ce-winh-notes-app-jest.tar.gz
Increase timeout for note_app_spec.js to 1000mswinh-notes-app-jest
-rw-r--r--spec/frontend/notes/components/note_app_spec.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/frontend/notes/components/note_app_spec.js b/spec/frontend/notes/components/note_app_spec.js
index 9ac58a2353f..ff833d2c899 100644
--- a/spec/frontend/notes/components/note_app_spec.js
+++ b/spec/frontend/notes/components/note_app_spec.js
@@ -5,6 +5,7 @@ import NotesApp from '~/notes/components/notes_app.vue';
import service from '~/notes/services/notes_service';
import createStore from '~/notes/stores';
import '~/behaviors/markdown/render_gfm';
+import { setTestTimeout } from 'helpers/timeout';
// TODO: use generated fixture (https://gitlab.com/gitlab-org/gitlab-ce/issues/62491)
import * as mockData from '../../../javascripts/notes/mock_data';
@@ -18,6 +19,8 @@ const emptyResponseInterceptor = (request, next) => {
);
};
+setTestTimeout(1000);
+
describe('note_app', () => {
let mountComponent;
let wrapper;