https://github.com/mojotech/grunt-pioneer
Grunt runner for pioneer.
https://github.com/mojotech/grunt-pioneer
Last synced: 9 months ago
JSON representation
Grunt runner for pioneer.
- Host: GitHub
- URL: https://github.com/mojotech/grunt-pioneer
- Owner: mojotech
- License: mit
- Created: 2014-07-10T14:50:07.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-02-22T14:19:27.000Z (over 10 years ago)
- Last Synced: 2024-10-30T05:26:06.343Z (almost 2 years ago)
- Language: CoffeeScript
- Homepage:
- Size: 8.79 KB
- Stars: 4
- Watchers: 48
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
grunt-pioneer
=============
Urgh! Pioneer
## Getting Started
#### Install the package.
`npm install grunt-pioneer --save-dev`
#### Load the `grunt-pioneer` plugin in your gruntfile.
`grunt.loadNpmTasks('grunt-pioneer')`
#### Configure the `pioneer` task in your gruntfile.
```coffee
pioneer:
options:
features: 'features'
steps: 'steps'
widgets: 'widgets'
format: 'pretty'
driver: 'chrome'
coffee: true
```
#### Run pioneer!
`grunt pioneer`
## Grunt Options
```coffee
features Path containing your .feature files 'tests'
steps Path containing your step definitions 'tests/steps'
widgets Path containing your widgets 'tests/widgets'
driver Webdriver to use when running tests *
coffee Print step definition snippets in coffescript true/false
format Available formats:
'pretty' : prints the feature as is
'progress': prints one character per scenario
'json' : prints the feature as JSON
'summary' : prints a summary only, after
all scenarios were executed
```
* [Available Webdrivers and Capabilities](http://selenium.googlecode.com/git/docs/api/javascript/class_webdriver_Capabilities.html)