grunt-testee

Grunt task for Testee

Usage no npm install needed!

<script type="module">
  import gruntTestee from 'https://cdn.skypack.dev/grunt-testee';
</script>

README

grunt-testee

Grunt task for Testee

npm Build Status Greenkeeper badge

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');
};