Commit 8d024db6 authored by kushalpandya's avatar kushalpandya

Update spec initialization with it being a shared component

parent 073ab676
import Vue from 'vue'; import Vue from 'vue';
import groupIdenticonComponent from '~/groups/components/group_identicon.vue'; import identiconComponent from '~/vue_shared/components/identicon.vue';
import GroupsStore from '~/groups/stores/groups_store';
import { group1 } from './mock_data';
const createComponent = () => { const createComponent = () => {
const Component = Vue.extend(groupIdenticonComponent); const Component = Vue.extend(identiconComponent);
const store = new GroupsStore();
const group = store.decorateGroup(group1);
return new Component({ return new Component({
propsData: { propsData: {
entityId: group.id, entityId: 1,
entityName: group.name, entityName: 'entity-name',
}, },
}).$mount(); }).$mount();
}; };
describe('GroupIdenticonComponent', () => { describe('IdenticonComponent', () => {
let vm; let vm;
beforeEach(() => { beforeEach(() => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment