mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
18 lines
602 B
JavaScript
18 lines
602 B
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
|
|
import {
|
|
renderWithProvider,
|
|
createSwapsMockStore,
|
|
} from '../../../../test/jest';
|
|
import AwaitingSignatures from '.';
|
|
|
|
describe('AwaitingSignatures', () => {
|
|
it('renders the component with initial props for 1 confirmation', () => {
|
|
const store = configureMockStore()(createSwapsMockStore());
|
|
const { getByText } = renderWithProvider(<AwaitingSignatures />, store);
|
|
expect(getByText('Confirm with your hardware wallet')).toBeInTheDocument();
|
|
expect(getByText('Cancel')).toBeInTheDocument();
|
|
});
|
|
});
|