Skip to content

Commit 9e66e1d

Browse files
committed
lintfix
1 parent 868617d commit 9e66e1d

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

tests/WebSocketConnection.test.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ describe(WebSocketConnection.name, () => {
186186
events.EventWebSocketConnectionError.name,
187187
(evt: events.EventWebSocketConnectionError) => {
188188
if (
189-
evt.detail instanceof errors.ErrorWebSocketConnectionKeepAliveTimeOut
189+
evt.detail instanceof
190+
errors.ErrorWebSocketConnectionKeepAliveTimeOut
190191
) {
191192
serverTimeoutProm.resolveP();
192193
}
@@ -236,7 +237,8 @@ describe(WebSocketConnection.name, () => {
236237
events.EventWebSocketConnectionStream.name,
237238
(event: events.EventWebSocketConnectionError) => {
238239
if (
239-
event.detail instanceof errors.ErrorWebSocketConnectionKeepAliveTimeOut
240+
event.detail instanceof
241+
errors.ErrorWebSocketConnectionKeepAliveTimeOut
240242
) {
241243
clientTimeoutProm.resolveP();
242244
}
@@ -290,7 +292,8 @@ describe(WebSocketConnection.name, () => {
290292
events.EventWebSocketConnectionStream.name,
291293
(event: events.EventWebSocketConnectionError) => {
292294
if (
293-
event.detail instanceof errors.ErrorWebSocketConnectionKeepAliveTimeOut
295+
event.detail instanceof
296+
errors.ErrorWebSocketConnectionKeepAliveTimeOut
294297
) {
295298
serverTimeoutProm.resolveP();
296299
}
@@ -343,7 +346,8 @@ describe(WebSocketConnection.name, () => {
343346
events.EventWebSocketConnectionStream.name,
344347
(event: events.EventWebSocketConnectionError) => {
345348
if (
346-
event.detail instanceof errors.ErrorWebSocketConnectionKeepAliveTimeOut
349+
event.detail instanceof
350+
errors.ErrorWebSocketConnectionKeepAliveTimeOut
347351
) {
348352
serverTimeoutProm.resolveP();
349353
}

0 commit comments

Comments
 (0)