Skip to content

Commit 0e6d4e2

Browse files
committed
Dont check nestjs types
1 parent 1cd8290 commit 0e6d4e2

File tree

1 file changed

+3
-1
lines changed
  • dev-packages/node-integration-tests/suites/tracing/nestjs

1 file changed

+3
-1
lines changed

dev-packages/node-integration-tests/suites/tracing/nestjs/scenario.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
2+
// @ts-nocheck These are only tests
13
/* eslint-disable @typescript-eslint/naming-convention */
24
/* eslint-disable @typescript-eslint/explicit-member-accessibility */
35
import { loggingTransport, sendPortToRunner } from '@sentry-internal/node-integration-tests';
@@ -45,7 +47,7 @@ class AppModule {}
4547

4648
async function init(): Promise<void> {
4749
const app = await NestFactory.create(AppModule);
48-
await app.listen();
50+
await app.listen(port);
4951
sendPortToRunner(port);
5052
}
5153

0 commit comments

Comments
 (0)