mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-16 23:40:15 -07:00
24 lines
677 B
TypeScript
24 lines
677 B
TypeScript
import React from 'react';
|
|
import Enzyme, { mount } from 'enzyme';
|
|
import EnzymeToJson from 'enzyme-to-json';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
import { BrowserRouter as Router } from 'react-router-dom';
|
|
import ShareAppOrScreenControlGroup from './ShareAppOrScreenControlGroup';
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|
|
jest.useFakeTimers();
|
|
|
|
it('should match exact snapshot', () => {
|
|
const subject = mount(
|
|
<>
|
|
<Router>
|
|
<ShareAppOrScreenControlGroup
|
|
handleNextEntireScreen={() => {}}
|
|
handleNextApplicationWindow={() => {}}
|
|
/>
|
|
</Router>
|
|
</>
|
|
);
|
|
expect(EnzymeToJson(subject)).toMatchSnapshot();
|
|
});
|