mirror of
https://github.com/denoland/deno.git
synced 2025-03-05 18:37:20 -05:00

This change aims to replace all relative import specifiers targeted at `tests/util/std` with mapped ones (using a `deno.json` file). Towards updating the `std` git submodule.
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
import { sum } from "./sum.js";
|
|
import { assertEquals } from "@std/assert/assert_equals.ts";
|
|
|
|
Deno.test("sum()", () => {
|
|
assertEquals(sum(1, 2), 3);
|
|
});
|