chore(): skip deprecated v1 tests

This commit is contained in:
tiagosiebler
2023-12-11 09:55:49 +00:00
parent 88e27e4819
commit 3b8201e922
4 changed files with 6 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ import {
waitForSocketEvent,
} from '../ws.util';
describe('Private Spot V1 Websocket Client', () => {
describe.skip('Private Spot V1 Websocket Client', () => {
let wsClient: WebsocketClient;
const API_KEY = process.env.API_KEY_COM;
const API_SECRET = process.env.API_SECRET_COM;
@@ -34,7 +34,7 @@ describe('Private Spot V1 Websocket Client', () => {
wsClient = new WebsocketClient(
wsClientOptions,
// fullLogger
getSilentLogger('expectSuccess')
getSilentLogger('expectSuccess'),
);
logAllEvents(wsClient);
});