We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd8290 commit 0e6d4e2Copy full SHA for 0e6d4e2
dev-packages/node-integration-tests/suites/tracing/nestjs/scenario.ts
@@ -1,3 +1,5 @@
1
+// eslint-disable-next-line @typescript-eslint/ban-ts-comment
2
+// @ts-nocheck These are only tests
3
/* eslint-disable @typescript-eslint/naming-convention */
4
/* eslint-disable @typescript-eslint/explicit-member-accessibility */
5
import { loggingTransport, sendPortToRunner } from '@sentry-internal/node-integration-tests';
@@ -45,7 +47,7 @@ class AppModule {}
45
47
46
48
async function init(): Promise<void> {
49
const app = await NestFactory.create(AppModule);
- await app.listen();
50
+ await app.listen(port);
51
sendPortToRunner(port);
52
}
53
0 commit comments