An open API service indexing awesome lists of open source software.

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.

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)