
1. Add source map support - if a test fails, a stack trace show original location instead of location in compiled .js file. 2. Fix issue introduced by the new version of the Karma IntelliJ plugin. The new version pass test names wrapped in /.../, but karma-mocha doesn't support it. As a result, it was impossible to run single test/suite in IntelliJ without hacking. Now it works out of box. 3. Fix "Browser disconnected" issues in IntellJ. Change-Id: I4c758d6e7e2739ab291857d758aaf642fcd11d54
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright (C) 2020 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
// The IntelliJ (and probably other IDEs) passes test names as a regexp in
|
|
// the format:
|
|
// --grep=/some regexp.../
|
|
// But mochajs doesn't expect the '/' characters before and after the regexp.
|
|
// The code below patches input args and removes '/' if they exists.
|
|
function installPatch(karma) {
|
|
const originalKarmaStart = karma.start;
|
|
|
|
karma.start = function(config, ...args) {
|
|
const regexpGrepPrefix = '--grep=/';
|
|
const regexpGrepSuffix = '/';
|
|
if (config && config.args) {
|
|
for (let i = 0; i < config.args.length; i++) {
|
|
const arg = config.args[i];
|
|
if (arg.startsWith(regexpGrepPrefix) && arg.endsWith(regexpGrepSuffix)) {
|
|
const regexpText = arg.slice(regexpGrepPrefix.length, -regexpGrepPrefix.length);
|
|
config.args[i] = '--grep=' + regexpText;
|
|
}
|
|
}
|
|
}
|
|
originalKarmaStart.apply(this, [config, ...args]);
|
|
}
|
|
|
|
}
|
|
|
|
const karma = window.__karma__;
|
|
if (karma && karma.start && !karma.__grep_patch_installed__) {
|
|
karma.__grep_patch_installed__ = true;
|
|
installPatch(karma);
|
|
}
|