mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-05-08 08:11:20 +00:00
web: karma runner patch (#1597)
* web: karma runner patch * web: karma runner patch Co-authored-by: Oleksandr Karpovich <oleksandr.karpovich@jetbrains.com>
This commit is contained in:
committed by
GitHub
parent
004e2f2c2a
commit
e32ef7bfb5
@@ -1,5 +1,8 @@
|
||||
// This is a workaround for https://github.com/karma-runner/karma-teamcity-reporter/issues/86
|
||||
|
||||
// logger is needed only to log cases when `browser.id` is not in browserResults
|
||||
const logger = require('../../../build/js/node_modules/karma/lib/logger')
|
||||
|
||||
const kotlinReporterModule = require("../../../build/js/packages_imported/kotlin-test-js-runner/1.6.10/karma-kotlin-reporter");
|
||||
|
||||
const KotlinReporter = kotlinReporterModule['reporter:karma-kotlin-reporter'][1];
|
||||
@@ -7,19 +10,30 @@ const KotlinReporter = kotlinReporterModule['reporter:karma-kotlin-reporter'][1]
|
||||
const NewReporter = function(baseReporterDecorator, config, emitter) {
|
||||
KotlinReporter.call(this, baseReporterDecorator, config, emitter);
|
||||
|
||||
const consoleLog = logger.create("NewReporter-KotlinReporter");
|
||||
|
||||
const onBrowserLogOriginal = this.onBrowserLog;
|
||||
const onSpecCompleteOriginal = this.onSpecComplete;
|
||||
const onBrowserStartOriginal = this.onBrowserStart;
|
||||
|
||||
|
||||
this.onBrowserStart = (browser) => {
|
||||
consoleLog.info("onBrowserStart: id = " + browser.id);
|
||||
onBrowserStartOriginal(browser);
|
||||
}
|
||||
|
||||
this.onBrowserLog = (browser, log, type) => {
|
||||
if (!this.browserResults[browser.id]) {
|
||||
this.initializeBrowser(browser);
|
||||
consoleLog.info("onBrowserLog: force onBrowserStart id=" + browser.id);
|
||||
this.onBrowserStart(browser);
|
||||
}
|
||||
onBrowserLogOriginal(browser, log, type);
|
||||
}
|
||||
|
||||
this.onSpecComplete = function (browser, result) {
|
||||
if (!this.browserResults[browser.id]) {
|
||||
this.initializeBrowser(browser);
|
||||
consoleLog.info("onSpecComplete: force onBrowserStart id=" + browser.id);
|
||||
this.onBrowserStart(browser);
|
||||
}
|
||||
onSpecCompleteOriginal(browser, result);
|
||||
}
|
||||
|
||||
@@ -2,10 +2,11 @@ config.plugins = config.plugins || [];
|
||||
config.plugins = config.plugins.filter(it => it !== "kotlin-test-js-runner/karma-kotlin-reporter.js");
|
||||
config.plugins.push("../../../../../test-utils/conf/karma-kotlin-runner-decorator/karma-kotlin-reporter-decorated.js");
|
||||
|
||||
|
||||
config.client.mocha = config.client.mocha || {};
|
||||
config.client.mocha.timeout = 10000;
|
||||
|
||||
config.browserNoActivityTimeout = 10000;
|
||||
config.browserDisconnectTimeout = 10000;
|
||||
config.browserDisconnectTolerance = 3;
|
||||
config.browserConsoleLogOptions = {level: "debug", format: "%b %T: %m", terminal: true};
|
||||
config.logLevel = config.LOG_DEBUG;
|
||||
|
||||
Reference in New Issue
Block a user