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.
12 lines
447 B
12 lines
447 B
3 years ago
|
/* 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();
|
||
|
});
|