fix open handle

This commit is contained in:
tiagosiebler
2021-06-24 00:42:47 +01:00
parent abbb6aa008
commit df6fe4ac38
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import { notAuthenticatedError, successResponseList, successResponseObject } fro
describe('Public Inverse Futures REST API Endpoints', () => { describe('Public Inverse Futures REST API Endpoints', () => {
const useLivenet = true; const useLivenet = true;
const api = new InverseFuturesClient(undefined, undefined, useLivenet); const api = new InverseFuturesClient(undefined, undefined, useLivenet, { disable_time_sync: true });
const symbol = 'BTCUSD'; const symbol = 'BTCUSD';
const interval = '15'; const interval = '15';

View File

@@ -3,7 +3,7 @@ import { notAuthenticatedError, successResponseList, successResponseObject } fro
describe('Public Inverse REST API Endpoints', () => { describe('Public Inverse REST API Endpoints', () => {
const useLivenet = true; const useLivenet = true;
const api = new InverseClient(undefined, undefined, useLivenet); const api = new InverseClient(undefined, undefined, useLivenet, { disable_time_sync: true });
const symbol = 'BTCUSD'; const symbol = 'BTCUSD';
const interval = '15'; const interval = '15';

View File

@@ -3,7 +3,7 @@ import { notAuthenticatedError, successResponseList, successResponseObject } fro
describe('Public Linear REST API Endpoints', () => { describe('Public Linear REST API Endpoints', () => {
const useLivenet = true; const useLivenet = true;
const api = new LinearClient(undefined, undefined, useLivenet); const api = new LinearClient(undefined, undefined, useLivenet, { disable_time_sync: true });
const symbol = 'BTCUSDT'; const symbol = 'BTCUSDT';
const interval = '15'; const interval = '15';