2020-12-29 19:39:30 +00:00
|
|
|
import {shallow} from 'enzyme';
|
2020-10-25 18:48:23 +00:00
|
|
|
import React from 'react';
|
|
|
|
import CategoryPage from './CategoryPage';
|
2020-06-12 15:57:30 +00:00
|
|
|
|
|
|
|
describe('<CategoryPage/>', function () {
|
|
|
|
it('renders without crashing ', function () {
|
|
|
|
const wrapper = shallow(<CategoryPage/>);
|
|
|
|
wrapper.unmount();
|
|
|
|
});
|
|
|
|
});
|