awx/__tests__/components/About.test.jsx
2018-11-02 17:46:43 -04:00

16 lines
395 B
JavaScript

import React from 'react';
import { mount } from 'enzyme';
import About from '../../src/components/About';
let aboutWrapper;
let headerElem;
describe('<About />', () => {
test('initially renders without crashing', () => {
aboutWrapper = mount(<About />);
headerElem = aboutWrapper.find('h2');
expect(aboutWrapper.length).toBe(1);
expect(headerElem.length).toBe(1);
});
});