Increase Jest timeout to 500ms

This commit is contained in:
Winnie Hellmann 2019-05-17 10:08:20 +00:00 committed by Tim Zallmann
parent f2cb522011
commit 9012d309f1
4 changed files with 1 additions and 10 deletions

View File

@ -7,11 +7,8 @@ import 'jquery.caret';
import 'at.js'; import 'at.js';
import { TEST_HOST } from 'helpers/test_constants'; import { TEST_HOST } from 'helpers/test_constants';
import { setTestTimeout } from 'helpers/timeout';
import { getJSONFixture } from 'helpers/fixtures'; import { getJSONFixture } from 'helpers/fixtures';
setTestTimeout(500);
const labelsFixture = getJSONFixture('autocomplete_sources/labels.json'); const labelsFixture = getJSONFixture('autocomplete_sources/labels.json');
describe('GfmAutoComplete', () => { describe('GfmAutoComplete', () => {

View File

@ -8,7 +8,6 @@ import PlaceholderSystemNote from '~/vue_shared/components/notes/placeholder_sys
import SystemNote from '~/vue_shared/components/notes/system_note.vue'; import SystemNote from '~/vue_shared/components/notes/system_note.vue';
import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue'; import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue';
import createStore from '~/notes/stores'; import createStore from '~/notes/stores';
import { setTestTimeout } from 'helpers/timeout';
import { import {
noteableDataMock, noteableDataMock,
discussionMock, discussionMock,
@ -18,8 +17,6 @@ import {
const localVue = createLocalVue(); const localVue = createLocalVue();
describe('DiscussionNotes', () => { describe('DiscussionNotes', () => {
setTestTimeout(500);
let wrapper; let wrapper;
const createComponent = props => { const createComponent = props => {

View File

@ -1,9 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
import '~/lib/utils/text_utility'; import '~/lib/utils/text_utility';
import AbuseReports from '~/pages/admin/abuse_reports/abuse_reports'; import AbuseReports from '~/pages/admin/abuse_reports/abuse_reports';
import { setTestTimeout } from 'helpers/timeout';
setTestTimeout(500);
describe('Abuse Reports', () => { describe('Abuse Reports', () => {
const FIXTURE = 'abuse_reports/abuse_reports_list.html'; const FIXTURE = 'abuse_reports/abuse_reports_list.html';

View File

@ -15,7 +15,7 @@ afterEach(() =>
}), }),
); );
initializeTestTimeout(300); initializeTestTimeout(500);
// fail tests for unmocked requests // fail tests for unmocked requests
beforeEach(done => { beforeEach(done => {