mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
e05aec8502
* Fix address-copy-button.test.js * Fix connected-site-menu.js * Fix app-header.test.js * Fix product-tour-popover.test.js
32 lines
932 B
JavaScript
32 lines
932 B
JavaScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
|
|
import { ProductTour } from '.';
|
|
|
|
describe('DetectedTokensBanner', () => {
|
|
const props = {
|
|
title: 'Permissions',
|
|
description: 'Find your connected accounts and manage permissions here.',
|
|
currentStep: '1',
|
|
totalSteps: '3',
|
|
closeMenu: jest.fn(),
|
|
};
|
|
it('should render correctly', () => {
|
|
const { getByTestId } = render(
|
|
<ProductTour anchorElement={document.body} {...props} />,
|
|
);
|
|
const menuContainer = getByTestId('multichain-product-tour-menu-popover');
|
|
expect(menuContainer).toBeInTheDocument();
|
|
});
|
|
|
|
it('should render prev Icon', () => {
|
|
const { getByTestId } = render(
|
|
<ProductTour anchorElement={document.body} {...props} prevIcon />,
|
|
);
|
|
const prevIcon = getByTestId(
|
|
'multichain-product-tour-menu-popover-prevIcon',
|
|
);
|
|
expect(prevIcon).toBeInTheDocument();
|
|
});
|
|
});
|