blob: fdcc4e49d859683f701a449f00edcd6c2f38c16f (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { JSDOM } from 'jsdom';
import * as Enzyme from 'enzyme';
import * as Adapter from 'enzyme-adapter-react-16';
import * as chai from 'chai';
Enzyme.configure({
adapter: new Adapter(),
});
const jsdom = new JSDOM('<!doctype html><html><body></body></html>');
|