InsidersByte/honeymoon-gift-list

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

Summary

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

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