1234567891011121314151617181920212223 |
- '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;
|