运行Karma单元测试时,我收到以下错误:
Chrome 47.0.2526(Linux 0.0.0)错误
未捕获的TypeError:无法读取未定义的属性'_setAsap' 评估路径/ node_modules / angular2 / bundles / angular2-polyfills.min.js
加载路径时出错/ node_modules / angular2 / bundles / angular2-polyfills.min.js
karma.conf.js 包含以下内容:
// Karma configuration
// Generated on Tue Dec 08 2015 14:19:08 GMT-0600 (CST)
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '../',
files: [
'node_modules/angular2/bundles/angular2-polyfills.min.js',
'node_modules/es6-shim/es6-shim.js',
'node_modules/systemjs/dist/system.js',
'node_modules/rxjs//Rx.js',
'node_modules/angular2/bundles/angular2.min.js',
'dist/components/uploader.js',
'dist/components/uploader.spec.js'
],
...
uploader.js 是一个来自TypeScript的编译JavaScript文件,是一个Angular2组件。 Uploader.spec.js 是单元测试。我使用Karma,SystemJS和Angular2 beta来尝试设置单元测试。
在查看_angular2_polyfills.js_时,_setAsap
似乎指向模块es6-promise
。但是,即使我在文件列表中添加了node_modules/es6-promise/dist/es6-promise.js
,也无效。
答案 0 :(得分:0)
所以,我有类似的问题,我不得不将它添加到我的system.conf.js文件中:
System.config({
paths: {
'agular2-polyfills': 'node_modules/angular2/bundles/angular2-polyfills.js',
'typescript': 'node_modules/typescript/lib/typescript.js',
'systemjs': 'node_modules/systemjs/dist/system.js',
'system-polyfills': 'node_modules/systemjs/dist/system-polyfills.js',
'es6-module-loader': 'node_modules/es6-module-loader/dist/es6-module-loader.js'
},
map: {
angular2: 'node_modules/angular2',
rxjs: 'node_modules/rxjs',
crypto: '@empty'// this fixed my last issue
},
meta: {
'path/to/components/*': {
format: 'register'
}
}
});
如果我记得正确(我不是自称是systemjs ninja),在查看几个堆栈问题并阅读config docs之后,我就来到了这个解决方案,但我不是&# 39;除了必须使用业力加载所有东西之外,还要记住其中一些原因。
我的karma.conf文件数组:
// list of files / patterns to load in the browser
files: [
'node_modules/reflect-metadata/Reflect.js',
'*.spec.js',
'**/*.spec.js',
'**/**/*.spec.js'
]
和karma.conf systemjs config:
systemjs: {
// Path to your SystemJS configuration file
configFile: 'system.conf.js',
// Patterns for files that you want Karma to make available, but not loaded until a module requests them. eg. Third-party libraries.
serveFiles: [
'client/**/*.js',
'server/**/*.js',
],
// SystemJS configuration specifically for tests, added after your config file.
// Good for adding test libraries and mock modules
config: {
transpiler: null,
defaultJSExtensions: true
},
meta: {
'angular2/angular2':{
format: 'register'
}
}
},
重要提示 这可能不是最好的方式,甚至是关闭,但这就是我让它工作的方式。我还没有在我的项目的这一部分完成我的重构阶段,因为我在完成项目的第一阶段后完成了
。 祝你好运!