A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/components/app/transaction-total-banner/transaction-total-banner.st...

11 lines
447 B

/* 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();
});