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.
19 lines
656 B
19 lines
656 B
import * as React from 'react';
|
|
import { renderWithProvider, screen } from '../../../../../test/jest';
|
|
import configureStore from '../../../../store/store';
|
|
|
|
import DetectedTokenAddress from './detected-token-address';
|
|
|
|
describe('DetectedTokenAddress', () => {
|
|
const args = {
|
|
address: '0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f',
|
|
};
|
|
|
|
it('should render the detected token address', async () => {
|
|
const store = configureStore({});
|
|
renderWithProvider(<DetectedTokenAddress {...args} />, store);
|
|
|
|
expect(screen.getByText('Token address:')).toBeInTheDocument();
|
|
expect(screen.getByText('0xc01...2a6f')).toBeInTheDocument();
|
|
});
|
|
});
|
|
|