returnButton.spec.jsx 300 B

12345678910
  1. import React from 'react';
  2. import {shallow} from 'enzyme';
  3. import ReturnButton from 'app/views/settings/components/forms/returnButton';
  4. describe('returnButton', function() {
  5. it('renders', function() {
  6. const wrapper = shallow(<ReturnButton />);
  7. expect(wrapper).toMatchSnapshot();
  8. });
  9. });