summaryrefslogtreecommitdiff
path: root/cli/tests/084_worker_custom_inspect.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-02-09 15:31:46 +0000
committerGitHub <noreply@github.com>2021-02-09 16:31:46 +0100
commit900953a65a7cb54eb8d11eba4a30e52da7dbb469 (patch)
tree7ca5b7b8261ffd92c945c618ac8bf9eaf15f5ceb /cli/tests/084_worker_custom_inspect.ts
parent47b3e4bada01f29a6cf2a143b94d772242bbab67 (diff)
fix(op_crates): Don't use `Deno.inspect` in op crates (#9332)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Diffstat (limited to 'cli/tests/084_worker_custom_inspect.ts')
-rw-r--r--cli/tests/084_worker_custom_inspect.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/084_worker_custom_inspect.ts b/cli/tests/084_worker_custom_inspect.ts
new file mode 100644
index 000000000..2e7b86a4e
--- /dev/null
+++ b/cli/tests/084_worker_custom_inspect.ts
@@ -0,0 +1,4 @@
+new Worker(
+ new URL("084_worker_custom_inspect_worker.ts", import.meta.url).href,
+ { type: "module" },
+);