1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/testdata/test/hello_world.ts

10 lines
168 B
TypeScript
Raw Permalink Normal View History

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