Skip to content

Commit b251ad0

Browse files
committed
test: fix failing tests
1 parent 245ede4 commit b251ad0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/joi/tests/joi.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useField, useForm } from '@/vee-validate';
22
import { toTypedSchema } from '@/joi';
33
import Joi from 'joi';
4-
import { mountWithHoc, flushPromises, setValue } from 'vee-validate/tests/helpers';
4+
import { mountWithHoc, flushPromises, setValue } from '../../vee-validate/tests/helpers';
55
import { Ref } from 'vue';
66

77
const REQUIRED_MSG = 'field is required';

packages/yup/tests/yup.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Ref, ref } from 'vue';
22
import { FieldMeta, useField, useForm } from '@/vee-validate';
33
import { toTypedSchema } from '@/yup';
4-
import { mountWithHoc, flushPromises, setValue } from 'vee-validate/tests/helpers';
4+
import { mountWithHoc, flushPromises, setValue } from '../../vee-validate/tests/helpers';
55
import * as yup from 'yup';
66

77
const REQUIRED_MSG = 'field is required';

packages/zod/tests/zod.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { FieldMeta, useField, useForm } from '@/vee-validate';
22
import { toTypedSchema } from '@/zod';
3-
import { mountWithHoc, flushPromises, setValue } from 'vee-validate/tests/helpers';
3+
import { mountWithHoc, flushPromises, setValue } from '../../vee-validate/tests/helpers';
44
import { Ref, ref } from 'vue';
55
import { z } from 'zod';
66

0 commit comments

Comments
 (0)