summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/relative_pattern_dot_slash/test/add.test.mjs
blob: 7b21d2fbc1822b6b8e5a1255bc026a6c485e2a87 (plain)
1
2
3
4
5
6
7
import { add } from "./add.mjs";

Deno.test("should add", () => {
  if (add(1, 2) !== 3) {
    throw new Error("FAIL");
  }
});