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
39
components/lib/progressbar/ProgressBar.spec.js
Normal file
39
components/lib/progressbar/ProgressBar.spec.js
Normal file
|
@ -0,0 +1,39 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import ProgressBar from './ProgressBar.vue';
|
||||
|
||||
describe('ProgressBar.vue', () => {
|
||||
let wrapper;
|
||||
|
||||
beforeEach(() => {
|
||||
wrapper = mount(ProgressBar, {
|
||||
props: {
|
||||
value: 0
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
it('should exist', () => {
|
||||
expect(wrapper.find('.p-progressbar.p-component').exists()).toBe(true);
|
||||
expect(wrapper.find('.p-progressbar').attributes()['aria-valuemin']).toBe('0');
|
||||
expect(wrapper.find('.p-progressbar').attributes()['aria-valuemax']).toBe('100');
|
||||
});
|
||||
|
||||
it('should value work', async () => {
|
||||
await wrapper.setProps({ value: 10 });
|
||||
|
||||
expect(wrapper.find('.p-progressbar').attributes()['aria-valuenow']).toBe('10');
|
||||
expect(wrapper.find('.p-progressbar-label').text()).toBe('10%');
|
||||
});
|
||||
|
||||
it('should not show value', async () => {
|
||||
await wrapper.setProps({ showValue: false });
|
||||
|
||||
expect(wrapper.find('.p-progressbar-label').exists()).toBe(false);
|
||||
});
|
||||
|
||||
it('should be indeterminated', async () => {
|
||||
await wrapper.setProps({ mode: 'indeterminate' });
|
||||
|
||||
expect(wrapper.find('.p-progressbar-indeterminate-container').exists()).toBe(true);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue