summaryrefslogtreecommitdiff
path: root/tests/testdata/workers/custom_inspect/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/workers/custom_inspect/main.ts')
-rw-r--r--tests/testdata/workers/custom_inspect/main.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testdata/workers/custom_inspect/main.ts b/tests/testdata/workers/custom_inspect/main.ts
new file mode 100644
index 000000000..93d4eec2d
--- /dev/null
+++ b/tests/testdata/workers/custom_inspect/main.ts
@@ -0,0 +1,4 @@
+new Worker(
+ import.meta.resolve("./worker.ts"),
+ { type: "module" },
+);