rename getPricedAssetCodes()

This commit is contained in:
woodser 2023-08-29 06:40:25 -04:00
parent 1ca91888b9
commit cf8b8132cf
2 changed files with 4 additions and 4 deletions

View file

@ -862,8 +862,8 @@ test("Can send and receive push notifications (CI, sanity check)", async () => {
}
});
test("Can get supported assets and their payment methods (CI, sanity check)", async() => {
const assetCodes = await user1.getSupportedAssetCodes(); // TODO: replace with getSupportedAssets(): TradeCurrency[]
test("Can get asset codes with prices and their payment methods (CI, sanity check)", async() => {
const assetCodes = await user1.getPricedAssetCodes();
for (const assetCode of assetCodes) {
const paymentMethods = await user1.getPaymentMethods(assetCode);
expect(paymentMethods.length).toBeGreaterThanOrEqual(0);