force close test websockets
This commit is contained in:
@@ -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 () => {
|
||||
|
||||
Reference in New Issue
Block a user