Skip to content

Commit 499c0b1

Browse files
hotfix(): fix integration tests typing issue
1 parent 5fe51f7 commit 499c0b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

integration/websockets/e2e/ws-gateway.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function createNestApp(...gateways): Promise<INestApplication> {
1212
providers: gateways,
1313
}).compile();
1414
const app = await testingModule.createNestApplication();
15-
app.useWebSocketAdapter(new WsAdapter(app));
15+
app.useWebSocketAdapter(new WsAdapter(app) as any);
1616
return app;
1717
}
1818

0 commit comments

Comments
 (0)