ocrcc-chatbox/src/widget.test.js
Benjamin Boudreau 234431c143 adding tests
2018-05-29 21:57:30 -04:00

10 lines
263 B
JavaScript

import React from 'react';
import { shallow } from 'enzyme';
import Widget from './widget';
test('simple test', () => {
const widgetDom = shallow(<Widget />);
console.log(widgetDom.html());
expect(widgetDom.find('.docked-widget').exists()).toBe(true);
});