Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitovi/grunt-testee
Grunt task for Testee
https://github.com/bitovi/grunt-testee
Last synced: about 6 hours ago
JSON representation
Grunt task for Testee
- Host: GitHub
- URL: https://github.com/bitovi/grunt-testee
- Owner: bitovi
- License: mit
- Created: 2017-05-10T13:46:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-08T19:22:26.000Z (over 2 years ago)
- Last Synced: 2024-10-07T05:46:11.092Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/grunt-testee
- Size: 60.5 KB
- Stars: 2
- Watchers: 48
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-testee
> Grunt task for [Testee](https://github.com/bitovi/testee)
[![npm](https://img.shields.io/npm/v/grunt-testee.svg)](https://www.npmjs.com/package/grunt-testee)
[![Build Status](https://travis-ci.org/bitovi/grunt-testee.svg?branch=master)](https://travis-ci.org/bitovi/grunt-testee)
[![Greenkeeper badge](https://badges.greenkeeper.io/bitovi/grunt-testee.svg)](https://greenkeeper.io/)## Install
```sh
npm install --save-dev grunt-testee
```## Grunt Usage
This package comes with a [grunt](https://npmjs.com/grunt) task that extends the [configuration API](https://github.com/bitovi/testee#configuration-api):
```js
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');
};
```