ocrcc-chatbox/src/widget.test.js

10 lines
263 B
JavaScript
Raw Normal View History

2018-05-30 01:56:01 +00:00
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);
});