Skip to content

Commit

Permalink
chore(): disable old endpoint test
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagosiebler committed Dec 22, 2023
1 parent 45705c0 commit 2240bd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/account-asset/private.read.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
);
Expand Down
2 changes: 1 addition & 1 deletion test/account-asset/private.v3.read.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2240bd4

Please sign in to comment.