mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
db9482d688
Tests occasionally fail if we get a bad gateway attempting to fetch the assertion module
6 lines
199 B
JavaScript
6 lines
199 B
JavaScript
import { addNumbers } from "./foo.ts";
|
|
import { assertEquals } from "../../../../../test_util/std/testing/asserts.ts";
|
|
|
|
Deno.test("addNumbers works", () => {
|
|
assertEquals(addNumbers(1, 2), 3);
|
|
});
|