43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import Vue from 'vue';
|
|
import store from '~/ide/stores';
|
|
import commitActions from '~/ide/components/commit_sidebar/actions.vue';
|
|
import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
|
|
import { resetStore } from 'spec/ide/helpers';
|
|
|
|
describe('IDE commit sidebar actions', () => {
|
|
let vm;
|
|
|
|
beforeEach(done => {
|
|
const Component = Vue.extend(commitActions);
|
|
|
|
vm = createComponentWithStore(Component, store);
|
|
|
|
vm.$store.state.currentBranchId = 'master';
|
|
|
|
vm.$mount();
|
|
|
|
Vue.nextTick(done);
|
|
});
|
|
|
|
afterEach(() => {
|
|
vm.$destroy();
|
|
|
|
resetStore(vm.$store);
|
|
});
|
|
|
|
it('renders 3 groups', () => {
|
|
expect(vm.$el.querySelectorAll('input[type="radio"]').length).toBe(3);
|
|
});
|
|
|
|
it('renders current branch text', () => {
|
|
expect(vm.$el.textContent).toContain('Commit to master branch');
|
|
});
|
|
|
|
describe('commitToCurrentBranchText', () => {
|
|
it('escapes current branch', () => {
|
|
vm.$store.state.currentBranchId = '<img src="x" />';
|
|
|
|
expect(vm.commitToCurrentBranchText).not.toContain('<img src="x" />');
|
|
});
|
|
});
|
|
});
|