mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +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
|
@ -1,24 +0,0 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import ProgressSpinner from './ProgressSpinner.vue';
|
||||
|
||||
describe('ProgressSpinner.vue', () => {
|
||||
let wrapper;
|
||||
|
||||
beforeEach(() => {
|
||||
wrapper = mount(ProgressSpinner, {
|
||||
props: {
|
||||
strokeWidth: '8',
|
||||
fill: 'green',
|
||||
animationDuration: '.5s'
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
it('should exist', () => {
|
||||
expect(wrapper.find('.p-progress-spinner').exists()).toBe(true);
|
||||
expect(wrapper.find('svg.p-progress-spinner-svg').exists()).toBe(true);
|
||||
expect(wrapper.find('svg.p-progress-spinner-svg').attributes().style).toBe('animation-duration: .5s;');
|
||||
expect(wrapper.find('circle.p-progress-spinner-circle').attributes().fill).toBe('green');
|
||||
expect(wrapper.find('circle.p-progress-spinner-circle').attributes().strokeMiterlimit).toBe('10');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue