karma.conf.js 3.06 KiB
// Karma configuration
// Generated on Sun May 14 2017 18:49:28 GMT+0200 (CEST)
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', 'requirejs'],
    // list of files / patterns to load in the browser
    files: [
      { pattern: 'spec/test-main.js', included: true },
      { pattern: 'spec/**/*.ts', included: false },
      { pattern: 'src/**/*.ts', included: false }
      // { pattern: 'build/**/*.js', included: false }
    // list of files to exclude
    exclude: [
    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {
      // '+(src|spec)/**/*.ts': ['typescript']
      '**/*.ts': ['typescript']
    typescriptPreprocessor: {
      // options passed to the typescript compiler 
      options: {
        sourceMap: true, // (optional) Generates corresponding .map file. 
        // enum ScriptTarget { ES3 = 0, ES5 = 1, ES6 = 2, ES2015 = 2, Latest = 2 }
        target: 'ES5', // (optional) Specify ECMAScript target version: 'ES3' (default), or 'ES5'
        // enum ModuleKind { None = 0, CommonJS = 1, AMD = 2, UMD = 3, System = 4, ES6 = 5, ES2015 = 5 }
        module: 'amd', // (optional) Specify module code generation: 'commonjs' or 'amd'
        // noImplicitAny: true, // (optional) Warn on expressions and declarations with an implied 'any' type. 
        // noResolve: true, // (optional) Skip resolution and preprocessing. 
        // removeComments: true, // (optional) Do not emit comments to output. 
        // concatenateOutput: false // (optional) Concatenate and emit output to single file. By default true if module option is omited, otherwise false. 
      // transforming the filenames 
      transformPath: function (path) {
        return path.replace(/\.ts$/, '.js');
    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['progress', 'kjhtml'],
    // web server port
    port: 9876,
    // enable / disable colors in the output (reporters and logs)
    colors: true,
717273747576777879808182838485868788899091929394959697
// level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // logLevel: config.LOG_DEBUG, // 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: false, // Concurrency level // how many browser should be started simultaneous concurrency: Infinity }) }