MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/NotFound404/NotFound.test.jsx

Summary

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

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