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