UNPKG

axe-core

Version:

Accessibility engine for automated Web UI testing

17 lines (14 loc) 251 B
module.exports = function (grunt) { 'use strict'; grunt.loadNpmTasks('grunt-contrib-jasmine'); grunt.initConfig({ jasmine: { test: { src: ['node_modules/axe-core/axe.js'], options: { specs: 'spec/**/*.js' } } } }); };