Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nette-discontinued/grunt-nette-tester
[DISCONTINUED] Grunt plugin for Nette Tester
https://github.com/nette-discontinued/grunt-nette-tester
grunt-plugins nette tester
Last synced: 3 months ago
JSON representation
[DISCONTINUED] Grunt plugin for Nette Tester
- Host: GitHub
- URL: https://github.com/nette-discontinued/grunt-nette-tester
- Owner: nette-discontinued
- License: mit
- Archived: true
- Created: 2013-08-14T19:07:14.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-09T11:35:39.000Z (almost 9 years ago)
- Last Synced: 2024-09-18T20:07:34.708Z (4 months ago)
- Topics: grunt-plugins, nette, tester
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 21
- Watchers: 12
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
grunt-nette-tester
==================> Grunt plugin for [Nette Tester](http://tester.nette.org).
This plugin requires Grunt `0.4.0` or newer.
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
1. Install this grunt plugin with the following command:
```
npm install grunt-nette-tester --save-dev
```2. Install Nette Tester (preferably with [Composer](http://getcomposer.org))
```
composer require nette/tester --dev
```3. Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-nette-tester');
```The `nette_tester` task
-----------------------In your project's Gruntfile, add a section named `nette_tester` to the data object passed into `grunt.initConfig()`.
Run this task with the `grunt nette_tester` command.```js
nette_tester: {
options: {
bin: 'vendor/bin/tester',
jobs: 40,
quiet: false,
},
src: ['vendor/nette/tester/tests'],
}
```Options
-------### bin
Type: `String` Default: `'tester'`The Nette Tester executable path.
### phpBin
Type: `String` Default: `'php-cgi'`The PHP executable binary path.
### phpIni
Type: `String` Default: `none`Sets a php.ini path.
### log
Type: `String` Default: `none`File path for log.
### ini
Type: `Object` Default: `{}`List of php ini options. `Example: {upload_max_filesize: '10MB'}`
### skipped
Type: `Bool` Default: `false`Show information about skipped tests.
### tap
Type: `Boolean` Default: `false`Report test execution in TAP format.
### jobs
Type: `Integer` Default: `1`Number of jobs to run parallel.
### colors
Type: `Boolean` Default: autoUse colors in output.
### setup
Type: `String` Default: `none`Script for runner setup.
### quiet
Type: `Boolean` Default: `false`Disables the output.
-----
[![Build Status](https://secure.travis-ci.org/nette/grunt-nette-tester.png?branch=master)](http://travis-ci.org/nette/grunt-nette-tester)