Karma自定义测试页面



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

我问的原因是因为我想看到摩卡漂亮浏览器的界面。有办法把它插入卡玛吗?

Testem在浏览器上显示测试框架的界面;是为什么卡玛只显示一个丑陋的空白页?

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

自从你发帖以来,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
            }
        ]
    })
}

阅读更多

pull request - https://github.com/karma-runner/karma/pull/1825

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

相关内容

  • 没有找到相关文章

最新更新