skip tests reported to bybit

This commit is contained in:
tiagosiebler
2023-01-24 11:14:04 +00:00
parent 8010b2cebf
commit 8d0702f1a7
2 changed files with 5 additions and 2 deletions

View File

@@ -133,7 +133,8 @@ describe('Private USDC Options REST API POST Endpoints', () => {
}); });
}); });
it('setMarginMode()', async () => { // Reached out to bybit
it.skip('setMarginMode()', async () => {
expect(await api.setMarginMode('REGULAR_MARGIN')).toMatchObject( expect(await api.setMarginMode('REGULAR_MARGIN')).toMatchObject(
{ {
retCode: API_ERROR_CODE.SET_MARGIN_MODE_FAILED_USDC, retCode: API_ERROR_CODE.SET_MARGIN_MODE_FAILED_USDC,

View File

@@ -69,10 +69,12 @@ describe('Private USDC Perp REST API POST Endpoints', () => {
); );
}); });
it('setMarginMode()', async () => { // Reached out to bybit
it.skip('setMarginMode()', async () => {
expect(await api.setMarginMode('REGULAR_MARGIN')).toMatchObject( expect(await api.setMarginMode('REGULAR_MARGIN')).toMatchObject(
{ {
retCode: API_ERROR_CODE.SET_MARGIN_MODE_FAILED_USDC, retCode: API_ERROR_CODE.SET_MARGIN_MODE_FAILED_USDC,
retMsg: '',
} }
// successResponseObjectV3() // successResponseObjectV3()
); );