p632-sp-2017/microservice-catalog-frontend

View on GitHub
src/main/app/src/component/layout/Navigation.test.js

Summary

Maintainability
A
30 mins
Test Coverage
import React from 'react';
import { shallow } from 'enzyme';

import Navigation from './Navigation';

const wrapper = shallow(<Navigation/>);

describe('Component : Navigation', ()=>{
  it('Renders without crashing',()=>{
    expect(wrapper.length).toBe(1);
  });
});