Skip to content

Commit

Permalink
chore(): skip deprecated v1 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagosiebler committed Dec 11, 2023
1 parent 88e27e4 commit 3b8201e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/spot/private.v1.read.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion test/spot/private.v1.write.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions test/spot/ws.private.v1.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -34,7 +34,7 @@ describe('Private Spot V1 Websocket Client', () => {
wsClient = new WebsocketClient(
wsClientOptions,
// fullLogger
getSilentLogger('expectSuccess')
getSilentLogger('expectSuccess'),
);
logAllEvents(wsClient);
});
Expand Down
4 changes: 2 additions & 2 deletions test/spot/ws.public.v1.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -23,7 +23,7 @@ describe('Public Spot V1 Websocket Client', () => {
beforeAll(() => {
wsClient = new WebsocketClient(
wsClientOptions,
getSilentLogger('expectSuccess')
getSilentLogger('expectSuccess'),
);
wsClient.connectPublic();
// logAllEvents(wsClient);
Expand Down

0 comments on commit 3b8201e

Please sign in to comment.