mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
47fe542273
* Sending showCustodyConfirmLink as a prop and fixing other issues * Upgraded MMI extension monrepo and trying to fix the issue * prevents deeplink from closing * Fixed styles of Custody view and changed the place of it * Fixed CI issues * fixing eslint issues * Update LavaMoat policies * fixing tests * Fixed test * updated snapshots * Improving IRT flow * Fixing everything * Finish fixing all issues * Fixed institutional entity done page styles * Fixing boxes * Fixed issue with checkbox * Fixed tests and styles * Removed duplicated lodash * updated snapshot * Fixing tests * Removed unused test * Fixed snapshot * Fixed snapshot --------- Co-authored-by: Antonio Regadas <antonio.regadas@consensys.net> Co-authored-by: MetaMask Bot <metamaskbot@users.noreply.github.com>
73 lines
2.2 KiB
JavaScript
73 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import testData from '../../../../.storybook/test-data';
|
|
import InteractiveReplacementTokenModal from '.';
|
|
|
|
describe('Interactive Replacement Token Modal', function () {
|
|
const mockStore = {
|
|
...testData,
|
|
metamask: {
|
|
...testData.metamask,
|
|
mmiConfiguration: {
|
|
portfolio: {
|
|
enabled: true,
|
|
url: 'https://dev.metamask-institutional.io/',
|
|
},
|
|
features: {
|
|
websocketApi: true,
|
|
},
|
|
custodians: [
|
|
{
|
|
refreshTokenUrl:
|
|
'https://saturn-custody.dev.metamask-institutional.io/oauth/token',
|
|
name: 'saturn-dev',
|
|
displayName: 'Saturn Custody',
|
|
enabled: true,
|
|
mmiApiUrl: 'https://api.dev.metamask-institutional.io/v1',
|
|
websocketApiUrl:
|
|
'wss://websocket.dev.metamask-institutional.io/v1/ws',
|
|
apiBaseUrl:
|
|
'https://saturn-custody.dev.metamask-institutional.io/eth',
|
|
iconUrl:
|
|
'https://saturn-custody-ui.dev.metamask-institutional.io/saturn.svg',
|
|
isNoteToTraderSupported: true,
|
|
},
|
|
],
|
|
},
|
|
custodyAccountDetails: {
|
|
'0xAddress': {
|
|
address: '0xAddress',
|
|
details: 'details',
|
|
custodyType: 'testCustody - Saturn',
|
|
custodianName: 'saturn-dev',
|
|
},
|
|
},
|
|
providerConfig: {
|
|
type: 'test',
|
|
},
|
|
selectedAddress: '0xAddress',
|
|
isUnlocked: true,
|
|
interactiveReplacementToken: {
|
|
oldRefreshToken: 'abc',
|
|
url: 'https://saturn-custody-ui.dev.metamask-institutional.io',
|
|
},
|
|
preferences: {
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
const store = configureMockStore()(mockStore);
|
|
|
|
it('should render the interactive-replacement-token-modal', () => {
|
|
const { getByText, getByTestId } = renderWithProvider(
|
|
<InteractiveReplacementTokenModal />,
|
|
store,
|
|
);
|
|
|
|
expect(getByTestId('interactive-replacement-token-modal')).toBeVisible();
|
|
expect(getByText('Your custodian session has expired')).toBeInTheDocument();
|
|
});
|
|
});
|