2021-05-06 16:14:42 +02:00
|
|
|
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();
|
2021-07-02 15:48:34 +02:00
|
|
|
expect(getByText('Cancel')).toBeInTheDocument();
|
2021-05-06 16:14:42 +02:00
|
|
|
});
|
|
|
|
});
|