all files / __tests__/ ExampleComponent.test.js

100% Statements 9/9
100% Branches 4/4
100% Functions 3/3
100% Lines 7/7
1 branch Ignored     
1 2 3 4 5 6 7 8 9 10 11 12            
import React from 'react';
import {shallow} from 'enzyme';
 
describe('ExampleComponent', () => {
 
    it('renders', () => {
        const component = shallow(<div/>);
        expect(component).to.be.ok;
    });
});