mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
6e13524bcd
Co-authored-by: metamaskbot <metamaskbot@users.noreply.github.com> Co-authored-by: Brad Decker <bhdecker84@gmail.com> Co-authored-by: Akintayo A. Olusegun <akintayo.segun@gmail.com>
23 lines
714 B
JavaScript
23 lines
714 B
JavaScript
import React from 'react';
|
|
import { screen } from '@testing-library/react';
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import configureStore from '../../../store/store';
|
|
import mockState from '../../../../test/data/mock-state.json';
|
|
import TransactionList from './transaction-list.component';
|
|
|
|
const render = () => {
|
|
const store = configureStore({
|
|
metamask: {
|
|
...mockState.metamask,
|
|
},
|
|
});
|
|
return renderWithProvider(<TransactionList />, store);
|
|
};
|
|
|
|
describe('TransactionList', () => {
|
|
it('renders TransactionList component and shows You have no transactions text', () => {
|
|
render();
|
|
expect(screen.getByText('You have no transactions')).toBeInTheDocument();
|
|
});
|
|
});
|