add jsdom; add basic Avatar component test
This commit is contained in:
parent
1a1b9bbbc0
commit
998f161e1d
4 changed files with 36 additions and 3 deletions
22
spec/javascript/setup.js
Normal file
22
spec/javascript/setup.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* http://airbnb.io/enzyme/docs/guides/jsdom.html
|
||||
*/
|
||||
var jsdom = require('jsdom').jsdom;
|
||||
|
||||
var exposedProperties = ['window', 'navigator', 'document'];
|
||||
|
||||
global.document = jsdom('');
|
||||
global.window = document.defaultView;
|
||||
Object.keys(document.defaultView).forEach((property) => {
|
||||
if (typeof global[property] === 'undefined') {
|
||||
exposedProperties.push(property);
|
||||
global[property] = document.defaultView[property];
|
||||
}
|
||||
});
|
||||
|
||||
global.navigator = {
|
||||
userAgent: 'node.js'
|
||||
};
|
||||
|
||||
var React = window.React = global.React = require('react');
|
||||
var ReactDOM = window.ReactDOM = global.ReactDOM = require('react-dom');
|
Loading…
Add table
Add a link
Reference in a new issue