diff options
author | 2023-07-19 23:59:37 -0700 | |
---|---|---|
committer | 2023-07-19 23:59:37 -0700 | |
commit | 2dc90f39081131f8994dbf687f131cfa2105ad25 (patch) | |
tree | ce8bc86f297a9a8bf282d070cae86a60811e5329 | |
parent | 53ad9b922f17de5568a1303ade1d82b49afae120 (diff) | |
download | bun-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.ts | 6 |
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 }; |