mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
29 lines
747 B
JavaScript
29 lines
747 B
JavaScript
|
import React from 'react';
|
||
|
import configureMockStore from 'redux-mock-store';
|
||
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
||
|
import LedgerInstructionField from '.';
|
||
|
|
||
|
describe('LedgerInstructionField Component', () => {
|
||
|
const mockStore = {
|
||
|
appState: {
|
||
|
ledgerWebHidConnectedStatus: 'notConnected',
|
||
|
},
|
||
|
metamask: {
|
||
|
ledgerTransportType: 'webhid',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
describe('rendering', () => {
|
||
|
it('should render properly with data instruction', () => {
|
||
|
const store = configureMockStore()(mockStore);
|
||
|
|
||
|
const { container } = renderWithProvider(
|
||
|
<LedgerInstructionField showDataInstruction />,
|
||
|
store,
|
||
|
);
|
||
|
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|
||
|
});
|
||
|
});
|