OpenMediaCenter/src/pages/SettingsPage/SettingsPage.test.js

11 lines
282 B
JavaScript
Raw Normal View History

import {shallow} from 'enzyme';
import React from 'react';
import SettingsPage from './SettingsPage';
2020-06-12 15:57:30 +00:00
describe('<RandomPage/>', function () {
it('renders without crashing ', function () {
const wrapper = shallow(<SettingsPage/>);
wrapper.unmount();
});
});