You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
596 B
13 lines
596 B
3 years ago
|
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");
|
||
|
|
||
3 years ago
|
config.client.mocha = config.client.mocha || {};
|
||
|
config.client.mocha.timeout = 10000;
|
||
|
|
||
|
config.browserNoActivityTimeout = 10000;
|
||
|
config.browserDisconnectTimeout = 10000;
|
||
|
config.browserDisconnectTolerance = 3;
|
||
3 years ago
|
config.browserConsoleLogOptions = {level: "debug", format: "%b %T: %m", terminal: true};
|
||
|
config.logLevel = config.LOG_DEBUG;
|