UNPKG

335 BTypeScriptView Raw
1import * as React from 'react';
2import RotationControl from '../rotation-control';
3import { mountWithMap, getMapMock } from '../jest/util';
4
5describe('RotationControl', () => {
6 it('should render the component', () => {
7 const wrapper = mountWithMap(<RotationControl />, getMapMock());
8 expect(wrapper).toBeDefined();
9 });
10});