Skip to content

Commit

Permalink
chore(deps): update devdependency execa to v9 (#2423)
Browse files Browse the repository at this point in the history
Co-authored-by: Pooya Parsa <pooya@pi0.io>
  • Loading branch information
renovate[bot] and pi0 committed May 16, 2024
1 parent 989124a commit a92f267
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
"edge-runtime": "^2.5.10",
"eslint": "^9.2.0",
"eslint-config-unjs": "0.3.1",
"execa": "^8.0.1",
"execa": "^9.1.0",
"expect-type": "^0.19.0",
"firebase-admin": "^12.1.0",
"firebase-functions": "^4.9.0",
Expand Down
95 changes: 93 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion test/presets/bun.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ describe.runIf(hasBun)("nitro:preset:bun", async () => {
});
ctx.server = {
url: `http://127.0.0.1:${port}`,
close: () => p.kill(),
close: () => {
// p.kill()
},
} as any;
await waitForPort(port);
return async ({ url, ...opts }) => {
Expand Down
4 changes: 3 additions & 1 deletion test/presets/deno-server.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ describe.runIf(hasDeno)("nitro:preset:deno-server", async () => {
);
ctx.server = {
url: `http://127.0.0.1:${port}`,
close: () => p.kill(),
close: () => {
// p.kill()
},
} as any;
await waitForPort(port, { delay: 1000, retries: 20, host: "127.0.0.1" });
return async ({ url, ...opts }) => {
Expand Down

0 comments on commit a92f267

Please sign in to comment.