Skip to content
Snippets Groups Projects
Commit a64904e4 authored by Phil Hughes's avatar Phil Hughes
Browse files

Merge branch '61596-increase-timeout-for-discussion-notes-spec' into 'master'

Fix discussion notes spec timeout

Closes #61596

See merge request gitlab-org/gitlab-ce!28212
parents 12e12d96 85cf3202
No related branches found
No related tags found
No related merge requests found
import { mount, createLocalVue } from '@vue/test-utils';
import { shallowMount, createLocalVue } from '@vue/test-utils';
import '~/behaviors/markdown/render_gfm';
import { SYSTEM_NOTE } from '~/notes/constants';
import DiscussionNotes from '~/notes/components/discussion_notes.vue';
Loading
Loading
@@ -8,6 +8,7 @@ import PlaceholderSystemNote from '~/vue_shared/components/notes/placeholder_sys
import SystemNote from '~/vue_shared/components/notes/system_note.vue';
import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue';
import createStore from '~/notes/stores';
import { setTestTimeout } from 'helpers/timeout';
import {
noteableDataMock,
discussionMock,
Loading
Loading
@@ -17,6 +18,8 @@ import {
const localVue = createLocalVue();
 
describe('DiscussionNotes', () => {
setTestTimeout(500);
let wrapper;
 
const createComponent = props => {
Loading
Loading
@@ -24,7 +27,7 @@ describe('DiscussionNotes', () => {
store.dispatch('setNoteableData', noteableDataMock);
store.dispatch('setNotesData', notesDataMock);
 
wrapper = mount(DiscussionNotes, {
wrapper = shallowMount(DiscussionNotes, {
localVue,
store,
propsData: {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment