diff --git a/webapp/components/Tag/spec.js b/webapp/components/Hashtag/Hashtag.spec.js similarity index 83% rename from webapp/components/Tag/spec.js rename to webapp/components/Hashtag/Hashtag.spec.js index 4824c65fc..cfb7d7e3f 100644 --- a/webapp/components/Tag/spec.js +++ b/webapp/components/Hashtag/Hashtag.spec.js @@ -1,15 +1,15 @@ import { shallowMount, createLocalVue } from '@vue/test-utils' import Styleguide from '@human-connection/styleguide' -import Tag from './' +import Hashtag from './Hashtag' const localVue = createLocalVue() localVue.use(Styleguide) -describe('Tag', () => { +describe('Hashtag', () => { let id let Wrapper = () => { - return shallowMount(Tag, { + return shallowMount(Hashtag, { localVue, propsData: { id, diff --git a/webapp/components/Tag/index.vue b/webapp/components/Hashtag/Hashtag.vue similarity index 60% rename from webapp/components/Tag/index.vue rename to webapp/components/Hashtag/Hashtag.vue index 1895d4fcf..a6085fabc 100644 --- a/webapp/components/Tag/index.vue +++ b/webapp/components/Hashtag/Hashtag.vue @@ -1,13 +1,10 @@