Pisałem moduł węzła, który może być używany zarówno backend i klientaKarma: Nie można odnaleźć Zmienna: eksport
(exports || window).Bar= (function() {
return function() { .... }
})();
Teraz moje testy karma wykorzystać PhantomJs i narzekają na nie istniejącej zmiennej exports
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
});
});
błąd pojawia się
PhantomJS 1.9.7 (Mac OS X) ERROR
ReferenceError: Can't find variable: exports
Czy istnieje sposób, aby ignorować eksportu Vari stanie w karam/phantomsJs?
Ale jaki jest problem z kodem OP? –
Spójrz na tę odpowiedź: http://stackoverflow.com/questions/4725603/variable-undefined-vs-typeof-variable-undefined – MarcoL