InsidersByte/honeymoon-gift-list

View on GitHub
public/containers/Main/index.test.jsx

Summary

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

describe('Main', () => {
  it('should render correctly', () => {
    const wrapper = shallow(<Main />);

    expect(wrapper).toMatchSnapshot();
  });
});