8

Karma 有一个加载测试页面的内置context.html文件。但这很糟糕。我可以指定自定义测试页吗?

我问的原因是因为我想在浏览器上看到 mocha 漂亮的界面。有没有办法用 Karma 插入它?

Testem 在浏览器上显示测试框架的界面;Karma 只显示丑陋的空白页是否有原因?

@stackoverflow = are you happy now?yes:no
stackoverflow = happy now?ok:thanks
4

1 回答 1

5

自您发布以来,Karma 添加了一个选项来指定自定义 HTML 文件。该属性被称为customContextFile

例子

module.exports = {
  config.set({
        basePath: './',
        frameworks: ['jasmine'],
        reporters: ['dots'],
        port: 9876,
        colors: true,
        logLevel: config.LOG_INFO,
        browserNoActivityTimeout: 100000,
        plugins: [
            'karma-chrome-launcher',
            'karma-jasmine'
        ],     
        customContextFile: 'specRunner.html',
        files: [
            {
                pattern: 'dist/tests/*.specs.js',
                served: true,
                watched: true
            }
        ]
    })
}

阅读更多

拉取请求 - https://github.com/karma-runner/karma/pull/1825

文档 - http://karma-runner.github.io/1.0/config/configuration-file.html#

于 2017-04-27T16:35:34.430 回答