MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/login/Components/Logout.test.jsx

Summary

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

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