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