chore(): skip tests for deprecated API categories
This commit is contained in:
@@ -2,7 +2,7 @@ import { LinearClient } from '../../src/linear-client';
|
||||
import { getTestProxy } from '../proxy.util';
|
||||
import { successResponseList, successResponseObject } from '../response.util';
|
||||
|
||||
describe('Private Linear REST API GET Endpoints', () => {
|
||||
describe.skip('Private Linear REST API GET Endpoints', () => {
|
||||
const API_KEY = process.env.API_KEY_COM;
|
||||
const API_SECRET = process.env.API_SECRET_COM;
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import { LinearClient } from '../../src';
|
||||
import { getTestProxy } from '../proxy.util';
|
||||
import { successResponseObject } from '../response.util';
|
||||
|
||||
describe('Private Linear REST API POST Endpoints', () => {
|
||||
describe.skip('Private Linear REST API POST Endpoints', () => {
|
||||
const API_KEY = process.env.API_KEY_COM;
|
||||
const API_SECRET = process.env.API_SECRET_COM;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import {
|
||||
successResponseObject,
|
||||
} from '../response.util';
|
||||
|
||||
describe('Public Linear REST API Endpoints', () => {
|
||||
describe.skip('Public Linear REST API Endpoints', () => {
|
||||
const api = new LinearClient({}, getTestProxy());
|
||||
|
||||
const symbol = 'BTCUSDT';
|
||||
|
||||
@@ -9,7 +9,7 @@ import {
|
||||
waitForSocketEvent,
|
||||
} from '../ws.util';
|
||||
|
||||
describe('Private Linear Perps Websocket Client', () => {
|
||||
describe.skip('Private Linear Perps Websocket Client', () => {
|
||||
const API_KEY = process.env.API_KEY_COM;
|
||||
const API_SECRET = process.env.API_SECRET_COM;
|
||||
|
||||
@@ -27,7 +27,7 @@ describe('Private Linear Perps Websocket Client', () => {
|
||||
key: 'bad',
|
||||
secret: 'bad',
|
||||
},
|
||||
getSilentLogger('expect401')
|
||||
getSilentLogger('expect401'),
|
||||
);
|
||||
|
||||
const wsOpenPromise = waitForSocketEvent(badClient, 'open', 2500);
|
||||
@@ -59,7 +59,7 @@ describe('Private Linear Perps Websocket Client', () => {
|
||||
beforeAll(() => {
|
||||
wsClient = new WebsocketClient(
|
||||
wsClientOptions,
|
||||
getSilentLogger('expectSuccess')
|
||||
getSilentLogger('expectSuccess'),
|
||||
);
|
||||
wsClient.connectPrivate();
|
||||
});
|
||||
|
||||
@@ -9,7 +9,7 @@ import {
|
||||
waitForSocketEvent,
|
||||
} from '../ws.util';
|
||||
|
||||
describe('Public Linear Perps Websocket Client', () => {
|
||||
describe.skip('Public Linear Perps Websocket Client', () => {
|
||||
let wsClient: WebsocketClient;
|
||||
|
||||
const wsClientOptions: WSClientConfigurableOptions = {
|
||||
|
||||
Reference in New Issue
Block a user