We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22689d4 commit e77f33cCopy full SHA for e77f33c
src/tests/superValidate.test.ts
@@ -1321,7 +1321,7 @@ describe('Zod 4', () => {
1321
});
1322
1323
const z4adapter = zod4(schema4);
1324
- console.dir(z4adapter.jsonSchema, { depth: null });
+ //console.dir(z4adapter.jsonSchema, { depth: null });
1325
1326
const form4 = await superValidate(data, z4adapter, {
1327
errors: false
@@ -1341,7 +1341,7 @@ describe('Zod 4', () => {
1341
1342
1343
const z3adapter = zod(schema3);
1344
- console.dir(z3adapter.jsonSchema, { depth: null });
+ //console.dir(z3adapter.jsonSchema, { depth: null });
1345
1346
const form3 = await superValidate(data, z3adapter, {
1347
0 commit comments