Skip to content

Commit 809cce8

Browse files
authored
Use random port for cargo test (vercel#70926)
We can't guarantee this port will always be available so use random one instead x-ref: https://github.com/vercel/next.js/actions/runs/11221640914/job/31192432034
1 parent 37ea26b commit 809cce8

File tree

1 file changed

+1
-1
lines changed
  • turbopack/crates/turbopack/tests/node-file-trace/integration

1 file changed

+1
-1
lines changed

turbopack/crates/turbopack/tests/node-file-trace/integration/socket.io.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const http = require("http");
22
const io = require("socket.io");
3-
const opts = { port: 3000 };
3+
const opts = { port: 0 };
44
const server = http.createServer((req, res) => {});
55
server.listen(opts.port);
66
server.close(() => {

0 commit comments

Comments
 (0)