MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/login/index.test.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { shallow } from 'enzyme';

import Login from './index';

describe('Login', () => {
  it('is defined', () => {
    const wrapper = shallow(
      <Login />,
    );
    expect(wrapper).toBeDefined();
  });
});