Created
March 27, 2018 17:17
-
-
Save pwfcurry/b131ff1df0dee9d948e265e34c60b665 to your computer and use it in GitHub Desktop.
Using babel, jsdom and sinonChai with intellij/gulp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Used to run mocha tests within intellij. Provide "--require setupMocha" to mocha to use this | |
require("babel/register"); | |
var chai = require("chai"); | |
var sinonChai = require("sinon-chai"); | |
var jsdom = require("jsdom").jsdom; | |
global.document = jsdom(""); | |
global.window = document.defaultView; | |
Object.keys(document.defaultView).forEach((property) => { | |
if (typeof global[property] === "undefined") { | |
global[property] = document.defaultView[property]; | |
} | |
}); | |
global.navigator = { | |
userAgent: "node.js" | |
}; | |
chai.use(sinonChai); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment