mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
38
components/lib/skeleton/Skeleton.spec.js
Normal file
38
components/lib/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