diff options
Diffstat (limited to 'tests/testdata/test/hello_world.ts')
-rw-r--r-- | tests/testdata/test/hello_world.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/testdata/test/hello_world.ts b/tests/testdata/test/hello_world.ts new file mode 100644 index 000000000..4a1c3463f --- /dev/null +++ b/tests/testdata/test/hello_world.ts @@ -0,0 +1,9 @@ +Deno.test({ + name: "hello world test", + fn(): void { + const world = "world"; + if ("world" !== world) { + throw new Error("world !== world"); + } + }, +}); |