File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ export * from "./validbot" ;
2
+ export * from "./zod" ;
Original file line number Diff line number Diff line change 1
1
import { describe , it , expect } from "vitest" ;
2
2
import { safeParse } from "valibot" ;
3
3
import { IdHelper } from "../../src" ;
4
- import { createValibotIdSchema } from "../../src/validators/validbot " ;
4
+ import { createValibotIdSchema } from "../../src/validators" ;
5
5
6
6
describe ( "Valibot ID Validator" , ( ) => {
7
7
it ( "should validate ID with default options" , ( ) => {
Original file line number Diff line number Diff line change 1
1
import { describe , it , expect } from "vitest" ;
2
2
import { IdHelper } from "../../src" ;
3
- import { createZodIdSchema } from "../../src/validators/zod " ;
3
+ import { createZodIdSchema } from "../../src/validators" ;
4
4
5
5
describe ( "Zod ID Validator" , ( ) => {
6
6
it ( "should validate ID with default options" , ( ) => {
You can’t perform that action at this time.
0 commit comments