test: and now correct the test for merge
All checks were successful
/ test (pull_request) Successful in 11s

This commit is contained in:
Glen Whitney 2025-04-07 19:37:24 -07:00
parent 3d2ee5f015
commit 29c81a09e2

View file

@ -6,6 +6,6 @@ describe('Number Type', () => {
assert(Number.test(3))
assert(Number.test(NaN))
assert(Number.test(Infinity))
assert(Number.test("3"))
assert(!Number.test("3"))
})
})