import React from 'react'; import { mountWithContexts } from '../../../../enzymeHelpers'; import JobDetail from '../../../../../src/pages/Jobs/JobDetail'; describe('', () => { const mockDetails = { name: 'Foo' }; test('initially renders succesfully', () => { mountWithContexts( ); }); test('should display a Close button', () => { const wrapper = mountWithContexts( ); expect(wrapper.find('Button[aria-label="close"]').length).toBe(1); wrapper.unmount(); }); });