Fixed #3802 - Improve folder structure for nuxt configurations

This commit is contained in:
mertsincan 2023-03-26 06:22:57 +01:00
parent 851950270b
commit f5fe822afb
563 changed files with 1703 additions and 1095 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');
});
});