style: address lint errors and warnings

This commit is contained in:
Kamil Myśliwiec
2024-11-27 12:18:43 +01:00
parent ca76e698f4
commit 6e0f891f48
4 changed files with 8 additions and 7 deletions

View File

@@ -103,9 +103,9 @@ describe('WebSocketGateway', () => {
describe('shared server for WS and Long-Running connections', () => {
afterEach(() => {});
it('should block application shutdown', function (done) {
let eventSource;
let eventSource: EventSource;
(async () => {
void (async () => {
this.timeout(30000);
setTimeout(() => {
@@ -136,7 +136,7 @@ describe('WebSocketGateway', () => {
eventSource.onerror = reject;
});
app.close();
await app.close();
})();
});