import React from 'react' import { render } from '@toptal/picasso-test-utils' import { Rotate180 } from './Rotate180' describe('Rotate180', () => { it('render without transformation', () => { const { container } = render(
Rotating component
) expect(container).toMatchSnapshot() }) it('render with transformation', () => { const { container } = render(
Rotating component
) expect(container).toMatchSnapshot() }) })