Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Apr 10, 2024
1 parent f58e317 commit 7030ae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli/install/registry/bun-install-registry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2350,7 +2350,7 @@ test("missing package on reinstall, some with binaries", async () => {
});

// waiter thread is only a thing on Linux.
for (const forceWaiterThread of (isLinux ? [false, true] : [false])) {
for (const forceWaiterThread of isLinux ? [false, true] : [false]) {
const testEnv = forceWaiterThread ? { ...env, BUN_FEATURE_FLAG_FORCE_WAITER_THREAD: "1" } : env;
describe("lifecycle scripts" + (forceWaiterThread ? " (waiter thread)" : ""), async () => {
test("root package with all lifecycle scripts", async () => {
Expand Down

0 comments on commit 7030ae7

Please sign in to comment.