We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c3c05c commit 39edea6Copy full SHA for 39edea6
dev-packages/node-integration-tests/src/index.ts
@@ -34,7 +34,7 @@ export function startExpressServerAndSendPortToRunner(
34
const address = server.address() as AddressInfo;
35
36
// @ts-expect-error If we write the port to the app we can read it within route handlers in tests
37
- const actualPort = app.port = port || address.port;
+ const actualPort = (app.port = port || address.port);
38
39
// eslint-disable-next-line no-console
40
console.log(`{"port":${actualPort}}`);
0 commit comments