diff options
Diffstat (limited to 'cli/tests/084_worker_custom_inspect.ts')
-rw-r--r-- | cli/tests/084_worker_custom_inspect.ts | 4 |
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" }, +); |