Skip to content

Commit

Permalink
Update docs for option 'specs'
Browse files Browse the repository at this point in the history
  • Loading branch information
eGavr committed Mar 30, 2016
1 parent 6382898 commit ae148a2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,14 @@ module.exports = {
For example,
```javascript
specs: [
'tests/desktop',
'tests/touch'
{ // run tests associated with this path in all browsers
files: 'tests/desktop' // which are configured in option `browsers`
},
'tests/deskpad', // the alias for the previous case
{
files: 'tests/touch', // run tests associated with this path in a browser with id `browser`
browsers: ['browser'] // which is configured in option `browsers`
}
]
```

Expand Down

0 comments on commit ae148a2

Please sign in to comment.