Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
petertonysmith94 committed Jan 31, 2025
1 parent 31266e4 commit 59caf7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/account/src/assets/asset-api.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { MOCK_ASSET_INFO_BY_OWNER, MOCK_BASE_ASSET, MOCK_FUEL_ASSET, MOCK_NFT_ASSET } from "../../test/fixtures/assets";
import { getAssetById, TESTNET_ASSET_API_URL, getAssetsByOwner, MAINNET_ASSET_API_URL, AssetInfo } from "./asset-api";
import { getAssetById, getAssetsByOwner, AssetInfo } from "./asset-api";

const mockFetch = () => {
const jsonResponse = vi.fn();
Expand Down Expand Up @@ -93,7 +93,7 @@ describe('Asset API', () => {

owner: expect.any(String),
amount: expect.any(String),
amountInUsd: expect.nullOrAny(String),
amountInUsd: null,
uri: expect.any(String),
}

Expand Down

0 comments on commit 59caf7f

Please sign in to comment.