InsidersByte/honeymoon-gift-list

View on GitHub
public/components/NoMatchAdmin/index.test.jsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import { shallow } from 'enzyme';
import NoMatchAdmin from './';

describe('NoMatchAdmin', () => {
  it('should render correctly', () => {
    const wrapper = shallow(<NoMatchAdmin />);
    expect(wrapper).toMatchSnapshot();
  });
});