2018-10-15 14:42:47 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import IdeTree from '~/ide/components/ide_tree.vue';
|
|
|
|
import store from '~/ide/stores';
|
|
|
|
import { createComponentWithStore } from '../../helpers/vue_mount_component_helper';
|
|
|
|
import { resetStore, file } from '../helpers';
|
|
|
|
import { projectData } from '../mock_data';
|
|
|
|
|
|
|
|
describe('IdeRepoTree', () => {
|
|
|
|
let vm;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
const IdeRepoTree = Vue.extend(IdeTree);
|
|
|
|
|
|
|
|
store.state.currentProjectId = 'abcproject';
|
|
|
|
store.state.currentBranchId = 'master';
|
2020-05-24 23:13:21 +05:30
|
|
|
store.state.projects.abcproject = { ...projectData };
|
2018-10-15 14:42:47 +05:30
|
|
|
Vue.set(store.state.trees, 'abcproject/master', {
|
|
|
|
tree: [file('fileName')],
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
vm = createComponentWithStore(IdeRepoTree, store).$mount();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
|
|
|
|
resetStore(vm.$store);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders list of files', () => {
|
|
|
|
expect(vm.$el.textContent).toContain('fileName');
|
|
|
|
});
|
|
|
|
});
|