Create ProgressBar.spec.js

pull/2342/head
Tuğçe Küçükoğlu 2022-03-22 13:07:13 +03:00
parent 15cf175bd5
commit 05d84cfe44
1 changed files with 39 additions and 0 deletions

View 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);
});
});