mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
12 lines
447 B
JavaScript
12 lines
447 B
JavaScript
|
/* eslint-disable jest/require-top-level-describe */
|
||
|
import React from 'react';
|
||
|
import { render, screen } from '@testing-library/react';
|
||
|
|
||
|
import '@testing-library/jest-dom/extend-expect';
|
||
|
import { DefaultStory } from './transaction-total-banner.stories';
|
||
|
|
||
|
it('renders transaction total banner stories with Base state', () => {
|
||
|
render(<DefaultStory {...DefaultStory.args} />);
|
||
|
expect(screen.findByTestId('#popover-content')).toBeDefined();
|
||
|
});
|