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