7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
import { assertEquals } from "https://deno.land/std@0.204.0/testing/asserts.ts";
|
|
import { greet } from "../src/lib.ts";
|
|
|
|
Deno.test("greet function", () => {
|
|
assertEquals(greet("Deno"), "Hello, Deno!");
|
|
});
|