Create Inplace.spec.js
parent
6c9544e53f
commit
0aa0812540
|
@ -0,0 +1,67 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import Inplace from './Inplace.vue';
|
||||
import InputText from '@/components/inputtext/InputText.vue';
|
||||
|
||||
describe('Inplace.vue', () => {
|
||||
it('should exist', () => {
|
||||
const wrapper = mount(Inplace);
|
||||
|
||||
expect(wrapper.find('.p-inplace.p-component').exists()).toBe(true);
|
||||
});
|
||||
|
||||
it('should slots display', () => {
|
||||
const wrapper = mount(Inplace, {
|
||||
global: {
|
||||
components: {
|
||||
InputText
|
||||
}
|
||||
},
|
||||
slots: {
|
||||
display: `
|
||||
<span class="pi pi-search" style="vertical-align: middle"></span>
|
||||
<span style="margin-left:.5rem; vertical-align: middle">View Picture</span>
|
||||
`,
|
||||
content: `<img src="demo/images/nature/nature1.jpg" />`
|
||||
}
|
||||
});
|
||||
|
||||
expect(wrapper.find('.p-inplace-display').exists()).toBe(true);
|
||||
|
||||
wrapper.vm.open({});
|
||||
|
||||
expect(wrapper.emitted()['update:active'][0]).toEqual([true]);
|
||||
|
||||
wrapper.vm.close({});
|
||||
|
||||
expect(wrapper.emitted()['update:active'][1]).toEqual([false]);
|
||||
});
|
||||
|
||||
it('closable inplace', async() => {
|
||||
const wrapper = mount(Inplace, {
|
||||
global: {
|
||||
components: {
|
||||
InputText
|
||||
}
|
||||
},
|
||||
props: {
|
||||
closable: true
|
||||
},
|
||||
slots: {
|
||||
display: `{{'Click to Edit'}}`,
|
||||
content: `<InputText autoFocus />`
|
||||
}
|
||||
});
|
||||
|
||||
expect(wrapper.find('.p-inplace-closable').exists()).toBe(true);
|
||||
expect(wrapper.find('.p-inplace-display').text()).toBe('Click to Edit');
|
||||
|
||||
await wrapper.vm.open({});
|
||||
|
||||
expect(wrapper.find('.p-inputtext').exists()).toBe(true);
|
||||
expect(wrapper.find('.pi.pi-times').exists()).toBe(true);
|
||||
|
||||
await wrapper.vm.close({});
|
||||
|
||||
expect(wrapper.find('.pi.pi-times').exists()).toBe(false);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue