Create Message.spec.js

pull/2337/head
Tuğçe Küçükoğlu 2022-03-18 11:26:44 +03:00
parent 98cc025c07
commit d60e20a6e0
1 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,52 @@
import { mount } from '@vue/test-utils';
import Message from './Message.vue';
describe('Message.vue', () => {
let wrapper;
beforeEach(() => {
wrapper = mount(Message, {
props: {
severity: 'error'
},
slots: {
default: 'Error Message Content'
}
});
});
it('should exist', () => {
expect(wrapper.find('.p-message.p-component').exists()).toBe(true);
expect(wrapper.find('.p-message.p-component').classes()).toContain('p-message-error');
expect(wrapper.find('.p-message-text').text()).toContain('Error Message Content');
});
it('should close the message', async () => {
await wrapper.vm.close({});
expect(wrapper.vm.visible).toBe(false);
expect(wrapper.emitted().close[0]).toEqual([{}]);
});
});
describe('Message.vue', () => {
let wrapper;
beforeEach(() => {
wrapper = mount(Message, {
props: {
severity: 'error',
life: 3000,
sticky: false
},
slots: {
default: 'Error Message Content'
}
});
});
it('should sticky and life works', async () => {
jest.runTimersToTime(3001);
expect(wrapper.vm.visible).toBe(false);
});
});