gpt4 book ai didi

javascript - 多个 HTML Reporters Karma Test Runner

转载 作者:行者123 更新时间:2023-11-30 00:17:15 24 4
gpt4 key购买 nike

我正在使用带有 Jasmine 框架的 Karma 测试运行器。我正在尝试使用以下记者。但我不能同时使用两者,有人可以帮我解决这个问题吗?

Karma-html-reporter 帮助生成测试用例的 HTML 报告,而 karma-jasmine 美化浏览器中的测试用例。

我认为问题出在一些命名上,至于这两个,

reporters: ["html"]

is used...有人可以建议一些方法来使它们都起作用。

这是我的 Karma.conf.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": ["jasmine", "sinon"],

// list of files / patterns to load in the browser
"files": ["dest/assets/test/myfile.debug.js", "test/**/help*.js",
"test/**/test*.js"],

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

// Reporters to use
"reporters": ["nyan", "html"],

// Configurations for Coverage Reporter
"coverageReporter": {
"dir": "coverage/",
"reporters": [
{"type": "html", "subdir": "CoverageReportHTML"},
{"type": "text", "subdir": ".", "file": "coverage.txt"}
]
},

// Configurations for HTML Reporter
"htmlReporter": {
"outputDir": "karma_html", // where to put the reports
"templatePath": null, // set if you moved jasmine_template.html
"focusOnFailures": true, // reports show failures on start
"namedFiles": false, // name files instead of creating sub-directories
"pageTitle": null, // page title for reports; browser info by default
"urlFriendlyName": false, // simply replaces spaces with _ for files/dirs
"reportName": "report-summary" // report summary filename; browser info by default
},

// Karma Webserver port
"port": 9999,

// 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_ERROR,

// enable / disable watching file and executing tests whenever any file changes
"autoWatch": true,

// Custom Launchers / Browsers Configurations
"customLaunchers": {
"IE10": {"base": "IE", "x-ua-compatible": "IE=EmulateIE10"},
"IE9": {"base": "IE", "x-ua-compatible": "IE=EmulateIE9"},
"IE8": {"base": "IE", "x-ua-compatible": "IE=EmulateIE8"},
"IE7": {"base": "IE", "x-ua-compatible": "IE=EmulateIE7"}
},

// Browsers to Launch - Available launchers: https://npmjs.org/browse/keyword/karma-launcher
"browsers": ["Chrome", "Firefox"],
// browsers: ["Chrome", "Safari", "IE", "Firefox", "IE8","IE9", "IE10"],
// if true, Karma captures browsers, runs the tests and exits (Keep false for CI)
"singleRun": true
});
};

最佳答案

TLDR:我提交了一个 pull request,但不确定它何时会被查看。现在,卸载当前版本的 karma-jasmine-html-reporter 并运行 npm install Nocomm/karma-jasmine-html-reporter --save-dev

这样使用:reporters: ['kjhtml', 'html']

----------------------------------------

当然可以,我将提交一个拉取请求,以免两者发生冲突。现在您可以编辑 karma-jasmine-html-reporter\src\index.js 文件的最后一行。

module.exports = {
'reporter:kjhtml': ['type', initReporter]
};

只需将 'reporter:html' 更改为 'reporter:kjhtml',然后将其反射(reflect)在您在 karma 配置文件中定义记者的位置。他们现在应该并肩工作。

关于javascript - 多个 HTML Reporters Karma Test Runner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34304418/

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