You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
322 B
13 lines
322 B
import { JSDOM } from 'jsdom'; |
|
import chai from 'chai'; |
|
import chaiEnzyme from 'chai-enzyme'; |
|
chai.use(chaiEnzyme()); |
|
|
|
const { window } = new JSDOM('', { |
|
userAgent: 'node.js', |
|
}); |
|
Object.keys(window).forEach(property => { |
|
if (typeof global[property] === 'undefined') { |
|
global[property] = window[property]; |
|
} |
|
});
|
|
|