kmiyashiro / grunt-mocha

[MOVED] Grunt task for running mocha specs in a headless browser (PhantomJS)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

options.urls not documented correctly

zgardner opened this issue · comments

README.md shows the following:

mocha: {
test: {
urls: [ 'http://localhost:8888/example/test/test2.html' ],
},
},

This doesn't work as the task looks at options.
It should be:

mocha: {
test: {
options: {
urls: [ 'http://localhost:8888/example/test/test2.html' ],
}
}
}