grunt-testee
v1.2.1
Published
Grunt task for Testee
Downloads
118
Readme
grunt-testee
Grunt task for Testee
Install
npm install --save-dev grunt-testee
Grunt Usage
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');
};