Files
OpenMediaCenter/src/elements/Popups/PopupBase.test.js
T

13 lines
274 B
JavaScript
Raw Normal View History

2020-12-11 18:23:13 +00:00
import {shallow} from "enzyme";
import React from "react";
import PopupBase from "./PopupBase";
describe('<PopupBase/>', function () {
it('renders without crashing ', function () {
const wrapper = shallow(<PopupBase/>);
wrapper.unmount();
});
});