diff --git a/test/spot/private.v1.read.test.ts b/test/spot/private.v1.read.test.ts index 67a83e6d..af8425c6 100644 --- a/test/spot/private.v1.read.test.ts +++ b/test/spot/private.v1.read.test.ts @@ -2,7 +2,7 @@ import { SpotClient } from '../../src'; import { getTestProxy } from '../proxy.util'; import { errorResponseObject, successResponseList } from '../response.util'; -describe('Private Spot REST API GET Endpoints', () => { +describe.skip('Private Spot REST API GET Endpoints', () => { const API_KEY = process.env.API_KEY_COM; const API_SECRET = process.env.API_SECRET_COM; diff --git a/test/spot/private.v1.write.test.ts b/test/spot/private.v1.write.test.ts index 8c260db3..41e59a5a 100644 --- a/test/spot/private.v1.write.test.ts +++ b/test/spot/private.v1.write.test.ts @@ -2,7 +2,7 @@ import { API_ERROR_CODE, SpotClient } from '../../src'; import { getTestProxy } from '../proxy.util'; import { successResponseObject } from '../response.util'; -describe('Private Spot REST API POST Endpoints', () => { +describe.skip('Private Spot REST API POST Endpoints', () => { const API_KEY = process.env.API_KEY_COM; const API_SECRET = process.env.API_SECRET_COM; diff --git a/test/spot/ws.private.v1.test.ts b/test/spot/ws.private.v1.test.ts index d409b7f4..2a643382 100644 --- a/test/spot/ws.private.v1.test.ts +++ b/test/spot/ws.private.v1.test.ts @@ -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); }); diff --git a/test/spot/ws.public.v1.test.ts b/test/spot/ws.public.v1.test.ts index b6b1d872..8824b379 100644 --- a/test/spot/ws.public.v1.test.ts +++ b/test/spot/ws.public.v1.test.ts @@ -13,7 +13,7 @@ import { waitForSocketEvent, } from '../ws.util'; -describe('Public Spot V1 Websocket Client', () => { +describe.skip('Public Spot V1 Websocket Client', () => { let wsClient: WebsocketClient; const wsClientOptions: WSClientConfigurableOptions = { @@ -23,7 +23,7 @@ describe('Public Spot V1 Websocket Client', () => { beforeAll(() => { wsClient = new WebsocketClient( wsClientOptions, - getSilentLogger('expectSuccess') + getSilentLogger('expectSuccess'), ); wsClient.connectPublic(); // logAllEvents(wsClient);