簡體   English   中英

Angular Karma console.log不起作用

[英]Angular Karma console.log does not work

我在我的項目中使用了Karma Angular Mocha Chai 我正在做TDD並希望測試我的更改。 我在我的test.js文件中做了一個console.log ,但是karma console沒有顯示。 我不確定如何啟用它?

這是我的karma.config.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: ['mocha', 'chai'],


    // list of files / patterns to load in the browser
    files: [
      'src/main/webapp/js/angular.js',
      'src/main/webapp/js/angular-simple-logger.js',
      'src/main/webapp/js/services/myservice-test.js',
      'src/main/webapp/js/controllers/*.js',
      'src/test/webapp/**/*.js'
    ],

    // list of files to exclude
    exclude: [
    ],

    client : {
        captureConsole : true
    },

    // 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'],


    // 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: false,

    // Concurrency level
    // how many browser should be started simultaneous
    concurrency: Infinity
  })
}

這是我的package.json

{
  "name": "myapp",
  "version": "0.0.1",
  "description": "my App",
  "main": "src/main/webapp/index.html",
  "directories": {
    "doc": "docs"
  },
  "scripts": {
    "test": "node_modules/.bin/karma start karma.config.js"
  },
  "repository": {
    "type": "git",
    "url": ""
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "chai": "^3.5.0",
    "karma": "^0.13.22",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^0.2.2",
    "karma-mocha": "^0.2.2",
    "mocha": "^2.4.5"
  },
  "dependencies": {
    "angular": "^1.5.1",
    "angular-mocks": "^1.5.1"
  }
}

browserConsoleLogOptions: {
  level: 'log'
},

到你的config.set。 這是一個新的(業力1.5.0,大約2017-02-20)業力行為的改進。 請參閱此處的進一步討論: https//github.com/karma-runner/karma/issues/2582

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM