deno_tuto/examples/test.ts
2021-02-18 20:10:55 +01:00

11 lines
208 B
TypeScript

// Run using deno test
import { assert } from "https://deno.land/std@0.87.0/testing/asserts.ts";
Deno.test("Hello test", () => {
assert("Hello");
});
Deno.test("Hello test", () => {
assert(false);
});