Textarea class renaming

This commit is contained in:
tugcekucukoglu 2024-05-22 11:11:33 +03:00
parent e07ee4a5a1
commit 8af884b34c
3 changed files with 15 additions and 15 deletions

View file

@ -15,7 +15,7 @@ describe('Textarea.vue', () => {
});
it('should exist', () => {
expect(wrapper.find('.p-inputtextarea.p-component').exists()).toBe(true);
expect(wrapper.find('.p-textarea.p-component').exists()).toBe(true);
expect(wrapper.attributes().rows).toBe('1');
expect(wrapper.attributes().cols).toBe('1');
});
@ -23,7 +23,7 @@ describe('Textarea.vue', () => {
it('should be autoresized', async () => {
await wrapper.setProps({ autoResize: true });
expect(wrapper.find('.p-inputtextarea-resizable').exists()).toBe(true);
expect(wrapper.find('.p-textarea-resizable').exists()).toBe(true);
});
it('should input', async () => {