mirror of
https://github.com/rjNemo/deno_tuto
synced 2026-06-06 02:26:40 +00:00
11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
// Run using deno test
|
|
|
|
import { assert } from "../deps.ts";
|
|
|
|
Deno.test("Hello test", () => {
|
|
assert("Hello");
|
|
});
|
|
|
|
Deno.test("Hello test", () => {
|
|
assert(false);
|
|
});
|