Skip to content

Commit 39edea6

Browse files
committed
Lint
1 parent 4c3c05c commit 39edea6

File tree

1 file changed

+1
-1
lines changed
  • dev-packages/node-integration-tests/src

1 file changed

+1
-1
lines changed

dev-packages/node-integration-tests/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function startExpressServerAndSendPortToRunner(
3434
const address = server.address() as AddressInfo;
3535

3636
// @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;
37+
const actualPort = (app.port = port || address.port);
3838

3939
// eslint-disable-next-line no-console
4040
console.log(`{"port":${actualPort}}`);

0 commit comments

Comments
 (0)