From 2240bd4043aded3e2da42ea51e249350ea020b63 Mon Sep 17 00:00:00 2001 From: tiagosiebler Date: Fri, 22 Dec 2023 11:55:46 +0000 Subject: [PATCH] chore(): disable old endpoint test --- test/account-asset/private.read.test.ts | 2 +- test/account-asset/private.v3.read.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/account-asset/private.read.test.ts b/test/account-asset/private.read.test.ts index e7f1326..371f2c7 100644 --- a/test/account-asset/private.read.test.ts +++ b/test/account-asset/private.read.test.ts @@ -40,7 +40,7 @@ describe('Private Account Asset REST API GET Endpoints', () => { }); }); - it('getUniversalTransfers()', async () => { + it.skip('getUniversalTransfers()', async () => { expect(await api.getInternalTransfers()).toMatchObject( successResponseObject(), ); diff --git a/test/account-asset/private.v3.read.test.ts b/test/account-asset/private.v3.read.test.ts index 4dc9964..895b1fb 100644 --- a/test/account-asset/private.v3.read.test.ts +++ b/test/account-asset/private.v3.read.test.ts @@ -49,7 +49,7 @@ describe('Private Account Asset V3 REST API Endpoints', () => { }); }); - it('getUniversalTransfers()', async () => { + it.skip('getUniversalTransfers()', async () => { expect(await api.getUniversalTransfers({ coin: coin })).toMatchObject({ ...successResponseObjectV3(), retCode: API_ERROR_CODE.INCORRECT_API_KEY_PERMISSIONS,