23 lines
512 B
JavaScript
23 lines
512 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', {
|
|
value: true
|
|
});
|
|
|
|
function getFailedSnapshotTests(testResults) {
|
|
const failedTestPaths = [];
|
|
if (testResults.numFailedTests === 0 || !testResults.testResults) {
|
|
return failedTestPaths;
|
|
}
|
|
|
|
testResults.testResults.forEach(testResult => {
|
|
if (testResult.snapshot && testResult.snapshot.unmatched) {
|
|
failedTestPaths.push(testResult.testFilePath);
|
|
}
|
|
});
|
|
|
|
return failedTestPaths;
|
|
}
|
|
|
|
exports.default = getFailedSnapshotTests;
|