11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
import {shallow} from 'enzyme';
|
|
import {TVShowPage} from './TVShowPage';
|
|
import React from 'react';
|
|
|
|
describe('<TVShowPage/>', () => {
|
|
it('renders without crashing', function () {
|
|
const wrapper = shallow(<TVShowPage />);
|
|
wrapper.unmount();
|
|
});
|
|
})
|