summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compat/test_runner/cjs.js
blob: 96a1b5112e4ca42eb0d39722f9bbf31035334de4 (plain)
1
2
3
4
5
6
7
8
9
const { strictEqual } = require("assert");

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

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