aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-19 23:59:37 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-19 23:59:37 -0700
commit2dc90f39081131f8994dbf687f131cfa2105ad25 (patch)
treece8bc86f297a9a8bf282d070cae86a60811e5329
parent53ad9b922f17de5568a1303ade1d82b49afae120 (diff)
downloadbun-2dc90f39081131f8994dbf687f131cfa2105ad25.tar.gz
bun-2dc90f39081131f8994dbf687f131cfa2105ad25.tar.zst
bun-2dc90f39081131f8994dbf687f131cfa2105ad25.zip
Update worker.test-d.ts
-rw-r--r--packages/bun-types/tests/worker.test-d.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/bun-types/tests/worker.test-d.ts b/packages/bun-types/tests/worker.test-d.ts
index 78816c80d..604e0a501 100644
--- a/packages/bun-types/tests/worker.test-d.ts
+++ b/packages/bun-types/tests/worker.test-d.ts
@@ -23,10 +23,8 @@ worker.terminate();
// Bun.pathToFileURL
const _worker3 = new Worker(new URL("worker.ts", import.meta.url).href, {
- bun: {
- ref: true,
- smol: true,
- },
+ ref: true,
+ smol: true,
});
export { worker, _worker2, _worker3 };