mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
style: address lint errors and warnings
This commit is contained in:
@@ -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();
|
||||
})();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user