We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee349a8 + 44fe062 commit 4334d1aCopy full SHA for 4334d1a
lib/core/utils/aggregate-checks.js
@@ -67,12 +67,7 @@ function aggregateChecks(nodeResOriginal) {
67
nodeResult[type].forEach(check => impacts.push(check.impact));
68
});
69
70
- // for failed nodes, define the impact
71
- if ([CANTTELL_PRIO, FAIL_PRIO].includes(nodeResult.priority)) {
72
- nodeResult.impact = aggregate(constants.impact, impacts);
73
- } else {
74
- nodeResult.impact = null;
75
- }
+ nodeResult.impact = aggregate(constants.impact, impacts);
76
77
// Delete the old result and priority properties
78
anyAllNone(nodeResult, c => {
0 commit comments