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 plain 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 ?
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 plain 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 ?
Share Improve this question asked Oct 4, 2014 at 11:01 Jeanluca ScaljeriJeanluca Scaljeri 29.2k66 gold badges235 silver badges382 bronze badges1 Answer
Reset to default 6A mon 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 plicated 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.