axe-core
Version:
Accessibility engine for automated Web UI testing
25 lines (20 loc) • 714 B
JavaScript
import processMessage from './process-message';
/**
* Get the pass, fail, or incomplete message for a check.
* @param {String} checkId The check id
* @param {String} type The message type ('pass', 'fail', or 'incomplete')
* @param {Object} [data] The check data
* @return {String}
*/
function getCheckMessage(checkId, type, data) {
// TODO: es-modules_audit
const check = axe._audit.data.checks[checkId];
if (!check) {
throw new Error(`Cannot get message for unknown check: ${checkId}.`);
}
if (!check.messages[type]) {
throw new Error(`Check "${checkId}"" does not have a "${type}" message.`);
}
return processMessage(check.messages[type], data);
}
export default getCheckMessage;