diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2018-11-29 14:54:40 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2018-11-29 23:15:40 +0100 |
commit | e3bddb6223ceba9e1258df28cfa046641d12710f (patch) | |
tree | 9fd9cf89dcc4f448d3099c4c17dafd971fc2f260 /spec/javascripts/vue_shared | |
parent | 99862050de660128ca564573eab46616c389ea8c (diff) | |
download | gitlab-ce-e3bddb6223ceba9e1258df28cfa046641d12710f.tar.gz |
Replace existing uses of timeline-entry with timeline entry component
Diffstat (limited to 'spec/javascripts/vue_shared')
-rw-r--r-- | spec/javascripts/vue_shared/components/notes/timeline_entry_item_spec.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/javascripts/vue_shared/components/notes/timeline_entry_item_spec.js b/spec/javascripts/vue_shared/components/notes/timeline_entry_item_spec.js index 7ca7f75e50a..c15635f2105 100644 --- a/spec/javascripts/vue_shared/components/notes/timeline_entry_item_spec.js +++ b/spec/javascripts/vue_shared/components/notes/timeline_entry_item_spec.js @@ -1,13 +1,13 @@ import { shallowMount, createLocalVue } from '@vue/test-utils'; -import TimelineEntry from '~/vue_shared/components/notes/timeline_entry.vue'; +import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue'; -describe(TimelineEntry.name, () => { +describe(TimelineEntryItem.name, () => { let wrapper; const factory = (options = {}) => { const localVue = createLocalVue(); - wrapper = shallowMount(TimelineEntry, { + wrapper = shallowMount(TimelineEntryItem, { localVue, ...options, }); |