在使用Karma运行测试时,我需要向Body添加一些HTML标记。
例如:<object id='sefNNaviPlugin' classid='clsid:SAMSUNG-INFOLINK-NNAVI'></object>
这是我的业力配置:http://pastebin.com/5YsNpr1r
有没有办法通过Karma配置添加它们?
提前致谢
答案 0 :(得分:0)
您可以使用customContextFile
将harma的基本html页面替换为您的html页面
那样:
module.exports = function(config) {
config.set({
files: [ '**/*.spec.js'],
customContextFile:path.resolve('index.tmpl.html'),
})
}