deno/cli/tests/testdata/test/hello_world.ts

10 lines
168 B
TypeScript

Deno.test({
name: "hello world test",
fn(): void {
const world = "world";
if ("world" !== world) {
throw new Error("world !== world");
}
},
});