debian-mirror-gitlab/spec/frontend/sidebar/confidential_edit_form_buttons_spec.js

36 lines
900 B
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
import Vue from 'vue';
import editForm from '~/sidebar/components/confidential/edit_form.vue';
describe('Edit Form Dropdown', () => {
let vm1;
let vm2;
beforeEach(() => {
const Component = Vue.extend(editForm);
2018-12-13 13:39:08 +05:30
const toggleForm = () => {};
const updateConfidentialAttribute = () => {};
2017-09-10 17:25:29 +05:30
vm1 = new Component({
propsData: {
isConfidential: true,
toggleForm,
updateConfidentialAttribute,
},
}).$mount();
vm2 = new Component({
propsData: {
isConfidential: false,
toggleForm,
updateConfidentialAttribute,
},
}).$mount();
});
it('renders on the appropriate warning text', () => {
2018-12-13 13:39:08 +05:30
expect(vm1.$el.innerHTML.includes('You are going to turn off the confidentiality.')).toBe(true);
2017-09-10 17:25:29 +05:30
2018-12-13 13:39:08 +05:30
expect(vm2.$el.innerHTML.includes('You are going to turn on the confidentiality.')).toBe(true);
2017-09-10 17:25:29 +05:30
});
});