assert main asset prices are defined

This commit is contained in:
woodser 2025-08-14 08:49:19 -04:00 committed by woodser
parent 6d998650a0
commit a23236a3e6

View file

@ -1190,6 +1190,7 @@ test("Can get market prices (Test, CI, sanity check)", async () => {
// get market prices of primary assets
for (const assetCode of TestConfig.assetCodes) {
const price = await user1.getPrice(assetCode);
expect(price).toBeDefined();
expect(price).toBeGreaterThan(0);
}