I've written a node module which can be used for both the backend and client
(exports || window).Bar= (function () {
return function () { .... }
})();
Now my karma tests use PhantomJs and complain about the not existing exports
variable
gulp.task('test', function () {
var karma = require('karma').server;
karma.start({
autoWatch: false,
browsers: [
'PhantomJS'
],
coverageReporter: {
type: 'lcovonly'
},
frameworks: [
'jasmine'
],
files: [
'bar.js',
'tests/bar.spec.js'
],
junitReporter: {
outputFile: 'target/junit.xml'
},
preprocessors: {
'app/js/!(lib)/**/*.js': 'coverage'
},
reporters: [
'progress',
'junit',
'coverage'
],
singleRun: true
});
});
The error I get is
PhantomJS 1.9.7 (Mac OS X) ERROR
ReferenceError: Can't find variable: exports
Is there a way to ignore the exports variable in karam/phantomsJs ?
A common pattern is usually to check whether the exports
variable is defined:
(function(){
...
var Bar;
if (typeof exports !== 'undefined') {
Bar = exports;
} else {
Bar = window.Bar = {};
}
})();
This pattern is used in Backbone as example - well, it's technically bit more complicated in the source code because it does support also AMD, but the idea it's this.
You can also push down the check passing it as first argument of the wrapping function:
(function(exports){
// your code goes here
exports.Bar = function(){
...
};
})(typeof exports === 'undefined'? this['mymodule']={}: exports);
Have a look at this blog post for more info.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With