我有一个与Webpack捆绑在一起的Angular 2应用程序,并通过Karma使用karma-webpack对Jasmine进行了测试。在开发时,代码被捆绑并正确提供。测试时,awesome-ts-loader会在我的.spec.ts文件中抛出“Module parse failed”错误。
Module parse failed: /Users/kyleburke/angular2-app/app/main/app.component.spec.ts Unexpected token (10:8)
You may need an appropriate loader to handle this file type.
| //////// SPECS /////////////
| describe('AppComponent', function () {
| let de: DebugElement;
| let comp: AppComponent;
| let fixture: ComponentFixture<AppComponent>;
@ ./app \.spec\.ts
@ ./karma-shim.js
我正在使用他们的Github自述文件中描述的karma-webpack“替代方法”加载我的所有.spec文件(在karma-shim.js中):
var appContext = require.context('./app', true, /\.spec\.ts/);
appContext.keys().forEach(function(path) {
try {
appContext(path);
}
catch(err) {
console.error('problem with'+ path);
console.error(err);
}
});
根据几个样本回购,我的karma.conf.js的相关部分配置正确:
files: [
{ pattern: './karma-shim.js', watched: false }
],
preprocessors: {
'./karma-shim.js': ['webpack', 'sourcemap']
},
webpack: webpackConfig,
我的Webpack配置中的所有内容都排成一行(部分样本):
module.exports = () => {
const TARGET = process.env.npm_lifecycle_event;
const isTest = TARGET === 'test';
let config = {};
config.entry = isTest ? {} : './app/main.ts';
config.output = isTest ? {} : {
path: './dist',
filename: 'bundle.js'
};
config.resolve = {
extensions: ['.ts', '.js', '.json', '.html']
};
config.module = {
rules: [
{
test: /\.ts$/,
loaders: ['awesome-typescript-loader', 'angular2-template-loader' ],
exclude: [isTest ? /\.(e2e)\.ts$/ : /\.(spec|e2e)\.ts$/, /node_modules\/(?!(ng2-.+))/]
},
{test: /\.json$/, loader: 'json-loader'},
{test: /\.html$/, loader: 'raw-loader'}
]
};
...
}
来自tslint的错误让我觉得Webpack正确地找到了spec文件,但它可能没有传递给awesome-ts-loader,或者它没有加载tsconfig.json。 (同样,开发时一切都很好)。