Skip to content

Commit

Permalink
chore: move mock jsons inside bridge controller package
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteflower committed Feb 13, 2025
1 parent 6d21310 commit 411424e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/bridge-controller/src/bridge-controller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import type { BridgeControllerMessenger, QuoteResponse } from './types';
import * as balanceUtils from './utils/balance';
import { getBridgeApiBaseUrl } from './utils/bridge';
import * as fetchUtils from './utils/fetch';
import mockBridgeQuotesErc20Native from '../../../tests/bridge-controller/mock-quotes-erc20-native.json';
import mockBridgeQuotesNativeErc20Eth from '../../../tests/bridge-controller/mock-quotes-native-erc20-eth.json';
import mockBridgeQuotesNativeErc20 from '../../../tests/bridge-controller/mock-quotes-native-erc20.json';
import { flushPromises } from '../../../tests/helpers';
import { handleFetch } from '../../controller-utils/src';
import mockBridgeQuotesErc20Native from '../tests/mock-quotes-erc20-native.json';
import mockBridgeQuotesNativeErc20Eth from '../tests/mock-quotes-native-erc20-eth.json';
import mockBridgeQuotesNativeErc20 from '../tests/mock-quotes-native-erc20.json';

const EMPTY_INIT_STATE = {
bridgeState: DEFAULT_BRIDGE_CONTROLLER_STATE,
Expand Down

0 comments on commit 411424e

Please sign in to comment.