mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
c8b697687f
* Update EIP-1559 UI on the View Quote page (WIP) * UI redesign for the View Quote page in Swaps, update tests, refactoring * Update styles for the View Quote page * Improve scrolling and styling for the View Quote page * Update snapshots * Fix a scrolling issue * Use Ethereum mainnet for swaps API calls if it's Rinkeby * UI / content updates on the View Quote page * Remove unused content in Swaps * Fix an ESLint issue * Update UTs with the latest content * Renaming * Remove 2 more unused content strings
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
import React from 'react';
|
|
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import TimerIcon from './timer-icon';
|
|
|
|
describe('TimerIcon', () => {
|
|
it('renders the TimerIcon component', () => {
|
|
const { container } = renderWithProvider(<TimerIcon />);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
});
|