Skip to content

Commit

Permalink
Update test mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorLift committed Dec 5, 2024
1 parent ff835da commit 3a3754b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/jest/mock-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { CHAIN_IDS, CURRENCY_SYMBOLS } from '../../shared/constants/network';
import { KeyringType } from '../../shared/constants/keyring';
import { ETH_EOA_METHODS } from '../../shared/constants/eth-methods';
import { mockNetworkState } from '../stub/networks';
import { DEFAULT_BRIDGE_CONTROLLER_STATE } from '../../app/scripts/controllers/bridge/constants';
import { DEFAULT_BRIDGE_STATUS_CONTROLLER_STATE } from '../../app/scripts/controllers/bridge-status/constants';
import { DEFAULT_BRIDGE_STATE } from '../../app/scripts/controllers/bridge/constants';
import { DEFAULT_BRIDGE_STATUS_STATE } from '../../app/scripts/controllers/bridge-status/constants';
import { BRIDGE_PREFERRED_GAS_ESTIMATE } from '../../shared/constants/bridge';

export const createGetSmartTransactionFeesApiResponse = () => {
Expand Down Expand Up @@ -750,12 +750,12 @@ export const createBridgeMockStore = (
destNetworkAllowlist: [],
...featureFlagOverrides,
},
quotes: DEFAULT_BRIDGE_CONTROLLER_STATE.quotes,
quoteRequest: DEFAULT_BRIDGE_CONTROLLER_STATE.quoteRequest,
quotes: DEFAULT_BRIDGE_STATE.quotes,
quoteRequest: DEFAULT_BRIDGE_STATE.quoteRequest,
...bridgeStateOverrides,
},
bridgeStatusState: {
...DEFAULT_BRIDGE_STATUS_CONTROLLER_STATE,
...DEFAULT_BRIDGE_STATUS_STATE,
...bridgeStatusStateOverrides,
},
},
Expand Down

0 comments on commit 3a3754b

Please sign in to comment.