- fix SpeedDial.spec.js, SplitButton.spec.js

pull/6170/head
uros 2024-08-01 15:59:22 +02:00
parent 8bfea139e4
commit dbe55014d4
2 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ describe('SpeedDial.vue', () => {
expect(wrapper.emitted()['click'][0]).toEqual([{}]);
expect(wrapper.emitted()['show'][0]).toEqual([]);
expect(wrapper.find('.p-speeddial').classes()).toContain('p-speeddial-opened');
expect(wrapper.find('.p-speeddial').classes()).toContain('p-speeddial-open');
expect(wrapper.findAll('li.p-speeddial-item')[0].attributes().style).toBe('transition-delay: 0ms;');
});
@ -60,7 +60,7 @@ describe('SpeedDial.vue', () => {
await wrapper.vm.onClick({});
expect(wrapper.find('.p-speeddial').classes()).not.toContain('p-speeddial-opened');
expect(wrapper.find('.p-speeddial').classes()).not.toContain('p-speeddial-open');
expect(wrapper.findAll('li.p-speeddial-item')[wrapper.findAll('li.p-speeddial-item').length - 1].attributes().style).toBe('transition-delay: 0ms;');
});

View File

@ -43,8 +43,8 @@ describe('SplitButton.vue', () => {
it('should exist', () => {
expect(wrapper.find('.p-splitbutton.p-component').exists()).toBe(true);
expect(wrapper.find('.p-tieredmenu.p-component').exists()).toBe(true);
expect(wrapper.findAll('li.p-menuitem').length).toBe(4);
expect(wrapper.find('.p-splitbutton-defaultbutton').exists()).toBe(true);
expect(wrapper.findAll('li.p-tieredmenu-item').length).toBe(4);
expect(wrapper.find('.p-splitbutton-button').exists()).toBe(true);
expect(wrapper.find('.p-button-label').text()).toBe('Save');
});