polaris-mirror/test/nightwatch/globals.js
2017-07-04 03:25:21 -07:00

7 lines
142 B
JavaScript

module.exports = {
before : function(cb) {
console.log("Requiring fetch polyfill");
fetch = require('whatwg-fetch').fetch;
cb();
}
};