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:
authorWinnie Hellmann <winnie@gitlab.com>2018-11-29 16:54:40 +0300
committerWinnie Hellmann <winnie@gitlab.com>2018-11-30 01:15:40 +0300
commite3bddb6223ceba9e1258df28cfa046641d12710f (patch)
tree9fd9cf89dcc4f448d3099c4c17dafd971fc2f260 /spec/javascripts/vue_shared
parent99862050de660128ca564573eab46616c389ea8c (diff)
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.js6
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,
});