summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compat/test_runner/esm.mjs
blob: 54a9468a4aad441ae2dbca09de3659c3772e16c4 (plain)
1
2
3
4
5
6
7
8
9
import { strictEqual } from "assert";

Deno.test("Correct assertion", () => {
  strictEqual(20, 20);
});

Deno.test("Failed assertion", () => {
  strictEqual(10, 20);
});