mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
96 lines
2.3 KiB
JavaScript
96 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { fireEvent, screen } from '@testing-library/react';
|
|
import { detectNewTokens } from '../../../store/actions';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import { ImportTokenLink } from '.';
|
|
|
|
const mockPushHistory = jest.fn();
|
|
|
|
jest.mock('react-router-dom', () => {
|
|
const original = jest.requireActual('react-router-dom');
|
|
return {
|
|
...original,
|
|
useLocation: jest.fn(() => ({ search: '' })),
|
|
useHistory: () => ({
|
|
push: mockPushHistory,
|
|
}),
|
|
};
|
|
});
|
|
|
|
jest.mock('../../../store/actions.ts', () => ({
|
|
detectNewTokens: jest.fn().mockReturnValue({ type: '' }),
|
|
}));
|
|
|
|
describe('Import Token Link', () => {
|
|
it('should match snapshot for goerli chainId', () => {
|
|
const mockState = {
|
|
metamask: {
|
|
providerConfig: {
|
|
chainId: '0x5',
|
|
},
|
|
},
|
|
};
|
|
|
|
const store = configureMockStore()(mockState);
|
|
|
|
const { container } = renderWithProvider(<ImportTokenLink />, store);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should match snapshot for mainnet chainId', () => {
|
|
const mockState = {
|
|
metamask: {
|
|
providerConfig: {
|
|
chainId: '0x1',
|
|
},
|
|
},
|
|
};
|
|
|
|
const store = configureMockStore()(mockState);
|
|
|
|
const { container } = renderWithProvider(<ImportTokenLink />, store);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should detectNewTokens when clicking refresh', () => {
|
|
const mockState = {
|
|
metamask: {
|
|
providerConfig: {
|
|
chainId: '0x5',
|
|
},
|
|
},
|
|
};
|
|
|
|
const store = configureMockStore()(mockState);
|
|
|
|
renderWithProvider(<ImportTokenLink />, store);
|
|
|
|
const refreshList = screen.getByTestId('refresh-list-button');
|
|
fireEvent.click(refreshList);
|
|
|
|
expect(detectNewTokens).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should push import token route', () => {
|
|
const mockState = {
|
|
metamask: {
|
|
providerConfig: {
|
|
chainId: '0x5',
|
|
},
|
|
},
|
|
};
|
|
|
|
const store = configureMockStore()(mockState);
|
|
|
|
renderWithProvider(<ImportTokenLink />, store);
|
|
|
|
const importToken = screen.getByTestId('import-token-button');
|
|
fireEvent.click(importToken);
|
|
|
|
expect(mockPushHistory).toHaveBeenCalledWith('/import-token');
|
|
});
|
|
});
|