Grunt task for Testee
npm install --save-dev grunt-testee
This package comes with a grunt task that extends the configuration API:
module.exports = function(grunt) {
grunt.initConfig({
testee: {
options: {
// See configuration API
},
coverage: {
options: {
// See configuration API
},
src: ['test/index.html']
},
browserstack: {
options: {
// See configuration API
},
src: ['test/index.html']
}
}
});
grunt.loadNpmTasks('grunt-testee');
};