mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
|
import React from 'react';
|
||
|
import { fireEvent, screen } from '@testing-library/react';
|
||
|
import { renderWithProvider } from '../../../../test/jest';
|
||
|
import configureStore from '../../../store/store';
|
||
|
import mockState from '../../../../test/data/mock-state.json';
|
||
|
import TermsOfUsePopup from './terms-of-use-popup';
|
||
|
|
||
|
const render = () => {
|
||
|
const store = configureStore({
|
||
|
metamask: {
|
||
|
...mockState.metamask,
|
||
|
},
|
||
|
});
|
||
|
const onAccept = jest.fn();
|
||
|
return renderWithProvider(<TermsOfUsePopup onAccept={onAccept} />, store);
|
||
|
};
|
||
|
|
||
|
describe('TermsOfUsePopup', () => {
|
||
|
beforeEach(() => {
|
||
|
const mockIntersectionObserver = jest.fn();
|
||
|
mockIntersectionObserver.mockReturnValue({
|
||
|
observe: () => null,
|
||
|
unobserve: () => null,
|
||
|
disconnect: () => null,
|
||
|
});
|
||
|
window.IntersectionObserver = mockIntersectionObserver;
|
||
|
});
|
||
|
|
||
|
it('renders TermsOfUse component and shows Terms of Use text', () => {
|
||
|
render();
|
||
|
expect(
|
||
|
screen.getByText('Our Terms of Use have updated'),
|
||
|
).toBeInTheDocument();
|
||
|
});
|
||
|
|
||
|
it('scrolls down when handleScrollDownClick is called', () => {
|
||
|
render();
|
||
|
const mockScrollIntoView = jest.fn();
|
||
|
window.HTMLElement.prototype.scrollIntoView = mockScrollIntoView;
|
||
|
const button = document.querySelector(
|
||
|
"[data-testid='popover-scroll-button']",
|
||
|
);
|
||
|
fireEvent.click(button);
|
||
|
expect(mockScrollIntoView).toHaveBeenCalledWith({
|
||
|
behavior: 'smooth',
|
||
|
});
|
||
|
});
|
||
|
});
|