Files
OpenMediaCenter/src/pages/CategoryPage/CategoryPage.test.js

11 lines
284 B
JavaScript
Raw Normal View History

2020-12-29 19:39:30 +00:00
import {shallow} from 'enzyme';
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();
});
});