import { toBeAnything } from "https://deno.land/x/unitest@v1.0.0-beta.82/matcher/to_be_anything.ts";
Use .toBeAnything
when checking if a value is not null
and undefined
.
import {
defineExpect,
not,
test,
toBeAnything,
} from "https://deno.land/x/unitest@$VERSION/mod.ts";
const expect = defineExpect({
matcherMap: {
toBeAnything,
},
modifierMap: {
not,
},
});
test("passes when value is not null", () => {
expect(0).toBeAnything();
expect(null).not.toBeAnything();
expect(undefined).not.toBeAnything();
});