Files
OpenMediaCenter/src/pages/CategoryPage/CategoryPage.test.js
Lukas Heiligenbrunner ac126f6a9d make tags deleteable
seperate sidebar for each different category page
2021-01-26 19:14:57 +00:00

11 lines
284 B
JavaScript

import {shallow} from 'enzyme';
import React from 'react';
import CategoryPage from './CategoryPage';
describe('<CategoryPage/>', function () {
it('renders without crashing ', function () {
const wrapper = shallow(<CategoryPage/>);
wrapper.unmount();
});
});