Unit testing 带Karma的角度2单元测试

Unit testing 带Karma的角度2单元测试,unit-testing,typescript,karma-runner,angular,Unit Testing,Typescript,Karma Runner,Angular,我正在学习Angular2,现在正在尝试使用Karma进行一些单元测试 我根据本文配置了我的项目库,但当我运行单元测试时,出现以下错误: Error: XHR error (404 Not Found) loading http://localhost:9876/base/src/angular2/angular2 我有将ts文件编译成JavaScript的gulp任务 karma.conf.js module.exports = function (config) { config.set(

我正在学习Angular2,现在正在尝试使用Karma进行一些单元测试

我根据本文配置了我的项目库,但当我运行单元测试时,出现以下错误:

Error: XHR error (404 Not Found) loading http://localhost:9876/base/src/angular2/angular2
我有将ts文件编译成JavaScript的gulp任务

karma.conf.js

module.exports = function (config) {
config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',


    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['jasmine'],


    // list of files / patterns to load in the browser
    // list of files / patterns to load in the browser
    files: [
        'node_modules/traceur/bin/traceur-runtime.js',
        { pattern: 'src/build/**/*.js', included: false, serve: true },
        'node_modules/es6-module-loader/dist/es6-module-loader.js',
        'node_modules/systemjs/dist/system.js',
        'node_modules/angular2/bundles/angular2.dev.js',
        'test-main.js',
        {
            pattern: 'src/test/**/*spec.js',
            included: false,
            serve: true,
            watch: true
        }
    ],


    // list of files to exclude
    exclude: [
        'src/build/app.js'
    ],

    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {
    },


    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['progress', 'html'],


    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: true,


    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: ['Chrome'],


    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun: true,

    plugins: [
        'karma-jasmine',
        'karma-chrome-launcher',
        'karma-jasmine-html-reporter'
    ]
})
};
test-main.js

/* global System */
/* global __karma__ */

// Cancel Karma's synchronous start,
// we will call `__karma__.start()` later, once all the specs are loaded.
__karma__.loaded = function () { };

// Set the base url of our scripts
System.baseURL = '/base/src/';
// Here we set all the prefixes so that we'll
// be able for example to import 'test/test_name'
// instead of 'scripts/build/test_name'
System.paths = {
    'test/*': '/base/src/test/*.js',
    'build/*': '/base/src/build/*.js',
    'angular2/*': 'angular2/*',
    'rx': 'rx'
};

// paths that include spec and ends with .js
function onlySpecFiles(path) {
    return /spec\.js$/.test(path);
}

// takes paths and normalize them to module names
// by removing a base url prefix and .js suffix
function karmaFileToModule(fileName) {
    return fileName.replace(System.baseURL, '')
        .replace('.js', '');
}

Promise.all(
    Object.keys(window.__karma__.files) // Takes all files that served by karma
        .filter(onlySpecFiles)  // choose only test files
        .map(karmaFileToModule) // normalize them to module names
        .map(function (moduleName) {
            return System.import(moduleName) // import each module
                .then(function (module) {
                    if (module.hasOwnProperty('main')) {
                        module.main(); //expose the tests
                    } else {
                        throw new Error('Module ' + moduleName + ' does not implement main() method.');
                    }
                });
        })).then(function () {
        __karma__.start(); // after all tests were exposed
    }, function (error) {
        console.error(error.stack || error);
        __karma__.start();
    });
标题-规格ts

    /// <reference path="../../typings/jasmine/jasmine.d.ts" />

import {Header} from 'build/components/header/header';

export function main() {
    describe('header component', () => {

        it('should add string to header names', () => {
            var header = new Header();
            var name = 'foo';
            header.addName(name);
            expect(1).toBe(1);
        });
    });
}
//
从“build/components/Header/Header”导入{Header};
导出函数main(){
描述('标题组件',()=>{
它('应将字符串添加到标题名称',()=>{
var头=新头();
变量名='foo';
header.addName(名称);
期望(1),期望(1);
});
});
}
标题.ts

    import {Component, View, NgFor} from 'angular2/angular2';



@Component({
    selector: 'header'
})
@View({
    templateUrl: 'build/components/header/header.html',
    directives: [NgFor]
})
export class Header {
    names: Array<string>;

    constructor() {
        this.names = new Array<string>();
    }

    addName(name: string) {
        this.names.push(name);
    }
}
从'angular2/angular2'导入{Component,View,NgFor};
@组成部分({
选择器:“标题”
})
@看法({
templateUrl:'build/components/header/header.html',
指令:[NgFor]
})
导出类标题{
名称:数组;
构造函数(){
this.names=新数组();
}
addName(名称:string){
this.names.push(name);
}
}
当我删除测试文件中的导入
组件时,测试运行正常,因此从'angular2/angular2'中导入{component…}是个问题


我不知道为什么karma试图将此加载为
/base/src/angular2/angular2
文件。谢谢你的帮助。

那看起来很老了,我建议你看