Merge pull request #2472 from Vladjmg/vladjmg_fix_test

- fix location InputText.vue in test
pull/2491/head
Tuğçe Küçükoğlu 2022-04-21 12:42:17 +03:00 committed by GitHub
commit c82090fdc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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