Skip to content

Commit e77f33c

Browse files
committed
Removed debug output from tests
1 parent 22689d4 commit e77f33c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/superValidate.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,7 @@ describe('Zod 4', () => {
13211321
});
13221322

13231323
const z4adapter = zod4(schema4);
1324-
console.dir(z4adapter.jsonSchema, { depth: null });
1324+
//console.dir(z4adapter.jsonSchema, { depth: null });
13251325

13261326
const form4 = await superValidate(data, z4adapter, {
13271327
errors: false
@@ -1341,7 +1341,7 @@ describe('Zod 4', () => {
13411341
});
13421342

13431343
const z3adapter = zod(schema3);
1344-
console.dir(z3adapter.jsonSchema, { depth: null });
1344+
//console.dir(z3adapter.jsonSchema, { depth: null });
13451345

13461346
const form3 = await superValidate(data, z3adapter, {
13471347
errors: false

0 commit comments

Comments
 (0)