summaryrefslogtreecommitdiff
path: root/std/node/tests/cjs/cjs_throw.js
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/tests/cjs/cjs_throw.js')
-rw-r--r--std/node/tests/cjs/cjs_throw.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/std/node/tests/cjs/cjs_throw.js b/std/node/tests/cjs/cjs_throw.js
deleted file mode 100644
index 3def8cc85..000000000
--- a/std/node/tests/cjs/cjs_throw.js
+++ /dev/null
@@ -1,6 +0,0 @@
-function hello() {
- throw new Error("bye");
-}
-
-// deno-lint-ignore no-undef
-module.exports = { hello };