最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Karma: Can't find variable: exports - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 6

A 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.

发布评论

评论列表(0)

  1. 暂无评论