bs-ajv
Version:
BucklesScript bindings to Ajv (Another JSON Validator)
23 lines (17 loc) • 512 B
JavaScript
;
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;