Skip to main content
Module

x/unitest/mod.ts>toBe

🃏 Deno-first universal unit testing framework
Latest
function toBe
Re-export
import { toBe } from "https://deno.land/x/unitest@v1.0.0-beta.82/mod.ts";

Use .toBe to compare primitive values

import { expect, test } from "https://deno.land/x/unitest@$VERSION/mod.ts";

test("should be", () => {
  expect(0).toBe(0);
  expect(0).not.toBe(-0);
});

Parameters

actual: unknown
expected: unknown