Skip to content

Commit e7dc26e

Browse files
WilcoFiersstraker
authored andcommitted
fix(core): measure perf for async checks (#4609)
Performance of async checks isn't measured correctly. No tests, since we don't generally test perf timer stuff.
1 parent 14e2656 commit e7dc26e

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

lib/core/base/rule.js

+15-9
Original file line numberDiff line numberDiff line change
@@ -284,15 +284,21 @@ Rule.prototype.run = function run(context, options = {}, resolve, reject) {
284284
});
285285
});
286286

287-
// Defer the rule's execution to prevent "unresponsive script" warnings.
288-
// See https://github.com/dequelabs/axe-core/pull/1172 for discussion and details.
289-
q.defer(res => setTimeout(res, 0));
290-
291-
if (options.performanceTimer) {
292-
this._logRulePerformance();
293-
}
294-
295-
q.then(() => resolve(ruleResult)).catch(error => reject(error));
287+
q.then(() => {
288+
if (options.performanceTimer) {
289+
this._logRulePerformance();
290+
}
291+
// Defer the rule's execution to prevent "unresponsive script" warnings.
292+
// See https://github.com/dequelabs/axe-core/pull/1172 for discussion and details.
293+
setTimeout(() => {
294+
resolve(ruleResult);
295+
}, 0);
296+
}).catch(error => {
297+
if (options.performanceTimer) {
298+
this._logRulePerformance();
299+
}
300+
reject(error);
301+
});
296302
};
297303

298304
/**

0 commit comments

Comments
 (0)