mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Styles imported. Components added
This commit is contained in:
parent
3cb3910561
commit
8264983db4
452 changed files with 55902 additions and 0 deletions
38
components/skeleton/Skeleton.spec.js
Normal file
38
components/skeleton/Skeleton.spec.js
Normal 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');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue