mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
function _defineProperty(obj, key, value) {
|
|
if (key in obj) {
|
|
Object.defineProperty(obj, key, {
|
|
value: value,
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true
|
|
});
|
|
} else {
|
|
obj[key] = value;
|
|
}
|
|
return obj;
|
|
}
|
|
|
|
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
class FailedTestsCache {
|
|
constructor() {
|
|
_defineProperty(this, '_enabledTestsMap', void 0);
|
|
}
|
|
|
|
filterTests(tests) {
|
|
const enabledTestsMap = this._enabledTestsMap;
|
|
|
|
if (!enabledTestsMap) {
|
|
return tests;
|
|
}
|
|
|
|
return tests.filter(testResult => enabledTestsMap[testResult.path]);
|
|
}
|
|
|
|
setTestResults(testResults) {
|
|
this._enabledTestsMap = (testResults || [])
|
|
.filter(testResult => testResult.numFailingTests)
|
|
.reduce((suiteMap, testResult) => {
|
|
suiteMap[testResult.testFilePath] = testResult.testResults
|
|
.filter(test => test.status === 'failed')
|
|
.reduce((testMap, test) => {
|
|
testMap[test.fullName] = true;
|
|
return testMap;
|
|
}, {});
|
|
return suiteMap;
|
|
}, {});
|
|
this._enabledTestsMap = Object.freeze(this._enabledTestsMap);
|
|
}
|
|
|
|
updateConfig(globalConfig) {
|
|
if (!this._enabledTestsMap) {
|
|
return globalConfig;
|
|
}
|
|
|
|
const newConfig = {...globalConfig};
|
|
newConfig.enabledTestsMap = this._enabledTestsMap;
|
|
return Object.freeze(newConfig);
|
|
}
|
|
}
|
|
|
|
exports.default = FailedTestsCache;
|