Create Skeleton.spec.js

pull/2342/head
Tuğçe Küçükoğlu 2022-03-22 15:26:54 +03:00
parent 5efe78c1d0
commit e2ed6a88ce
1 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
import { mount } from '@vue/test-utils';
import Skeleton from './Skeleton.vue';
describe('Skeleton.vue', () => {
let wrapper;
beforeEach(() => {
wrapper = mount(Skeleton);
});
it('should exist', () => {
expect(wrapper.find('.p-skeleton.p-component').exists()).toBe(true);
});
it('should get width and height', async () => {
await wrapper.setProps({ width: '5rem', height: '2rem', borderRadius: '10px' });
expect(wrapper.find('.p-skeleton').attributes().style).toEqual('width: 5rem; height: 2rem; border-radius: 10px;');
});
it('should get size', async () => {
await wrapper.setProps({ size: '4rem' });
expect(wrapper.find('.p-skeleton').attributes().style).toEqual('width: 4rem; height: 4rem;');
});
it('should get shape', async () => {
await wrapper.setProps({ shape: 'circle' });
expect(wrapper.find('.p-skeleton').classes()).toContain('p-skeleton-circle');
});
it('should remove animation', async () => {
await wrapper.setProps({ animation: 'none' });
expect(wrapper.find('.p-skeleton').classes()).toContain('p-skeleton-none');
});
});