- fix location InputText.vue in test

pull/2472/head
Vladjmg 2022-04-18 20:58:13 +03:00
parent 10ab377f44
commit 4cc1ad97fb
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { mount } from '@vue/test-utils'; import { mount } from '@vue/test-utils';
import InputText from '@/components/inputText/InputText.vue'; import InputText from './InputText.vue';
describe('InputText.vue', () => { describe('InputText.vue', () => {
it('is InputText component exists', async () => { it('is InputText component exists', async () => {
@ -31,4 +31,4 @@ describe('InputText.vue', () => {
expect(wrapper.vm.filled).toBe(true); expect(wrapper.vm.filled).toBe(true);
}); });
}); });