Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/notes/components/discussion_notes_spec.js')
-rw-r--r--spec/frontend/notes/components/discussion_notes_spec.js20
1 files changed, 16 insertions, 4 deletions
diff --git a/spec/frontend/notes/components/discussion_notes_spec.js b/spec/frontend/notes/components/discussion_notes_spec.js
index 5ab26d742ca..51c7f45d5b0 100644
--- a/spec/frontend/notes/components/discussion_notes_spec.js
+++ b/spec/frontend/notes/components/discussion_notes_spec.js
@@ -119,17 +119,26 @@ describe('DiscussionNotes', () => {
it('emits deleteNote when first note emits handleDeleteNote', () => {
findNoteAtIndex(0).vm.$emit('handleDeleteNote');
- expect(wrapper.emitted().deleteNote).toBeTruthy();
+
+ return wrapper.vm.$nextTick().then(() => {
+ expect(wrapper.emitted().deleteNote).toBeTruthy();
+ });
});
it('emits startReplying when first note emits startReplying', () => {
findNoteAtIndex(0).vm.$emit('startReplying');
- expect(wrapper.emitted().startReplying).toBeTruthy();
+
+ return wrapper.vm.$nextTick().then(() => {
+ expect(wrapper.emitted().startReplying).toBeTruthy();
+ });
});
it('emits deleteNote when second note emits handleDeleteNote', () => {
findNoteAtIndex(1).vm.$emit('handleDeleteNote');
- expect(wrapper.emitted().deleteNote).toBeTruthy();
+
+ return wrapper.vm.$nextTick().then(() => {
+ expect(wrapper.emitted().deleteNote).toBeTruthy();
+ });
});
});
@@ -142,7 +151,10 @@ describe('DiscussionNotes', () => {
it('emits deleteNote when first note emits handleDeleteNote', () => {
note.vm.$emit('handleDeleteNote');
- expect(wrapper.emitted().deleteNote).toBeTruthy();
+
+ return wrapper.vm.$nextTick().then(() => {
+ expect(wrapper.emitted().deleteNote).toBeTruthy();
+ });
});
});
});