area-51/lib/video.js-main/build/test-a11y.js

28 lines
656 B
JavaScript
Raw Normal View History

2025-01-30 04:21:55 +01:00
const AccessSniff = require('access-sniff');
const path = require('path');
const testFiles = [
path.join(__dirname, '..', 'sandbox', 'descriptions.test-a11y.html')
];
const options = {
accessibilityLevel: 'WCAG2AA',
reportLevels: {
notice: false,
warning: true,
error: true
},
ignore: [
// Ignore warning about contrast of the "vjs-no-js" fallback link
'WCAG2AA.Principle1.Guideline1_4.1_4_3.G18.BgImage'
]
};
AccessSniff.default(testFiles, options).then(function(report) {
AccessSniff.report(report);
}).catch(function() {
// there were errors, which are already reported, exit with an error
process.exit(1);
});