Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
zod
/
src
/
v4
/
classic
/
tests
/
base.test.ts
blob: e33470a1812635c6c5e00722a4f56c3df28e37a9 [
file
] [
log
] [
blame
]
import
{
expect
,
test
}
from
"vitest"
;
import
*
as
z
from
"zod/v4"
;
test
(
"test this binding"
,
()
=>
{
const
parse
=
z
.
string
().
parse
;
expect
(
parse
(
"asdf"
)).
toBe
(
"asdf"
);
});