remove deprecated REST endpoint

This commit is contained in:
tiagosiebler
2021-10-06 19:33:48 +01:00
parent b6434bf4f5
commit a810bc8c59
5 changed files with 2 additions and 40 deletions

View File

@@ -55,10 +55,6 @@ describe('Public Inverse REST API Endpoints', () => {
expect(await api.getSymbols()).toMatchObject(successResponseList());
});
it('getLiquidations()', async () => {
expect(await api.getLiquidations({ symbol })).toMatchObject(successResponseList());
});
it('getServerTime()', async () => {
expect(await api.getServerTime()).toMatchObject(successResponseObject());
});
@@ -67,4 +63,4 @@ describe('Public Inverse REST API Endpoints', () => {
expect(await api.getApiAnnouncements()).toMatchObject(successResponseList());
});
});
});
});