mirror of
https://github.com/rjNemo/deno_tuto
synced 2026-06-10 20:26:40 +00:00
11 lines
208 B
TypeScript
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);
|
|
});
|