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