gpt4 book ai didi

javascript - karma 自定义测试页

转载 作者:数据小太阳 更新时间:2023-10-29 04:46:07 26 4
gpt4 key购买 nike

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

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

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

@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
}
]
})
}

阅读更多

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

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

关于javascript - karma 自定义测试页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24898767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com