mirror of
https://github.com/rjNemo/deno_hello
synced 2026-06-06 01:56:40 +00:00
8 lines
247 B
TypeScript
8 lines
247 B
TypeScript
import { assertStrictEquals } from "https://deno.land/std@0.87.0/testing/asserts.ts";
|
|
import main from "./index.ts";
|
|
|
|
Deno.test("Hello test", () => {
|
|
const actual = main();
|
|
const expected = "hello";
|
|
assertStrictEquals(actual, expected);
|
|
});
|