A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/pages/swaps/awaiting-signatures/awaiting-signatures.test.js

17 lines
620 B

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(document.querySelector('.swaps-footer')).toMatchSnapshot();
});
});