force close test websockets
This commit is contained in:
@@ -40,7 +40,7 @@ describe('Private Inverse Perps Websocket Client', () => {
|
||||
// console.error()
|
||||
expect(e?.message).toStrictEqual('Unexpected server response: 401');
|
||||
}
|
||||
badClient.closeAll();
|
||||
badClient.closeAll(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -62,7 +62,7 @@ describe('Private Inverse Perps Websocket Client', () => {
|
||||
|
||||
afterAll(() => {
|
||||
// await promiseSleep(2000);
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a ws connection', async () => {
|
||||
|
||||
@@ -24,7 +24,7 @@ describe('Public Inverse Perps Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -38,7 +38,7 @@ describe('Private Linear Perps Websocket Client', () => {
|
||||
} catch (e) {
|
||||
expect(e?.message).toStrictEqual('Unexpected server response: 401');
|
||||
}
|
||||
badClient.closeAll();
|
||||
badClient.closeAll(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -65,7 +65,7 @@ describe('Private Linear Perps Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a ws connection', async () => {
|
||||
|
||||
@@ -22,7 +22,7 @@ describe('Public Linear Perps Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -36,7 +36,7 @@ describe('Private Spot V1 Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
// TODO: how to detect if auth failed for the v1 spot ws
|
||||
|
||||
@@ -50,7 +50,7 @@ describe('Private Spot V3 Websocket Client', () => {
|
||||
} catch (e) {
|
||||
// console.error()
|
||||
}
|
||||
badClient.closeAll();
|
||||
badClient.closeAll(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -72,7 +72,7 @@ describe('Private Spot V3 Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a private ws connection', async () => {
|
||||
|
||||
@@ -28,7 +28,7 @@ describe('Public Spot V1 Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -28,7 +28,7 @@ describe('Public Spot V3 Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -29,7 +29,7 @@ describe('Private Unified Margin Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -26,7 +26,7 @@ describe('Public Unified Margin Websocket Client (Options)', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -29,7 +29,7 @@ describe('Public Unified Margin Websocket Client (Perps - USDC)', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -29,7 +29,7 @@ describe('Public Unified Margin Websocket Client (Perps - USDT)', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -60,7 +60,7 @@ describe('Private USDC Option Websocket Client', () => {
|
||||
|
||||
// badClient.subscribe(wsTopic);
|
||||
badClient.removeAllListeners();
|
||||
badClient.closeAll();
|
||||
badClient.closeAll(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -81,7 +81,7 @@ describe('Private USDC Option Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a private ws connection', async () => {
|
||||
|
||||
@@ -26,7 +26,7 @@ describe('Public USDC Option Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
@@ -60,7 +60,7 @@ describe('Private USDC Perp Websocket Client', () => {
|
||||
|
||||
// badClient.subscribe(wsTopic);
|
||||
badClient.removeAllListeners();
|
||||
badClient.closeAll();
|
||||
badClient.closeAll(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -82,7 +82,7 @@ describe('Private USDC Perp Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a private ws connection', async () => {
|
||||
|
||||
@@ -27,7 +27,7 @@ describe('Public USDC Perp Websocket Client', () => {
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
wsClient.closeAll();
|
||||
wsClient.closeAll(true);
|
||||
});
|
||||
|
||||
it('should open a public ws connection', async () => {
|
||||
|
||||
Reference in New Issue
Block a user