splitter tests added

pull/2402/head
Tuğçe Küçükoğlu 2022-04-05 17:45:56 +03:00
parent c1e33a0b9a
commit 415801ded9
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,42 @@
import { mount } from '@vue/test-utils';
import Splitter from './Splitter.vue';
import SplitterPanel from '@/components/splitterpanel/SplitterPanel.vue';
describe('Splitter.vue', () => {
let wrapper;
beforeEach(() => {
wrapper = mount(Splitter, {
global: {
components: {
SplitterPanel
}
},
slots: {
default: `
<SplitterPanel class="flex align-items-center justify-content-center">
Panel 1
</SplitterPanel>
<SplitterPanel class="flex align-items-center justify-content-center">
Panel 2
</SplitterPanel>
`
}
});
});
it('should exist', () => {
expect(wrapper.find('.p-splitter.p-component').exists()).toBe(true);
expect(wrapper.find('.p-splitter').classes()).toContain('p-splitter-horizontal');
expect(wrapper.findAll('.p-splitter-panel').length).toBe(2);
expect(wrapper.find('.p-splitter-gutter-handle').exists()).toBe(true);
});
it('should mousedown', async () => {
const gutter = wrapper.find('.p-splitter-gutter-handle').element;
const siblings = wrapper.findAll('.p-splitter-panel');
await wrapper.vm.onGutterMouseDown({ currentTarget: {gutter, previousElementSibling: siblings[0].element, nextElementSibling: siblings[1].element }, pageX: 123 }, 0);
expect(wrapper.find('.p-splitter').classes()).toContain('p-splitter-resizing');
});
});

View File

@ -0,0 +1,23 @@
import { mount } from '@vue/test-utils';
import SplitterPanel from './SplitterPanel.vue';
describe('SplitterPanel.vue', () => {
let wrapper;
beforeEach(() => {
wrapper = mount(SplitterPanel, {
attrs: {
class: 'flex align-items-center justify-content-center'
},
slots: {
default: 'Panel 1'
}
});
});
it('should exist', () => {
expect(wrapper.find('.p-splitter-panel').exists()).toBe(true);
expect(wrapper.attributes().class).toBe('p-splitter-panel flex align-items-center justify-content-center');
expect(wrapper.find('.p-splitter-panel').text()).toBe('Panel 1');
});
});