InsidersByte/honeymoon-gift-list

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

Summary

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

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

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