InsidersByte/honeymoon-gift-list

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

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { shallow } from 'enzyme';
import AdminNotLoggedIn from './';

describe('AdminNotLoggedIn', () => {
  it('should render correctly', () => {
    const wrapper = shallow(
      <AdminNotLoggedIn>
        <h1>Hello World</h1>
      </AdminNotLoggedIn>
    );

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