1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
# PhantomJS Runner #
A PhantomJS-powered headless test runner, providing basic console output for QUnit tests.
### Usage ###
```bash
phantomjs runner.js [url-of-your-qunit-testsuite]
```
### Example ###
```bash
phantomjs runner.js http://localhost/qunit/test/index.html
```
### Notes ###
- Requires [PhantomJS](http://phantomjs.org/) 1.6+ (1.7+ recommended).
- If you're using Grunt, you should take a look at its [qunit task](https://github.com/gruntjs/grunt/blob/master/docs/task_qunit.md).
|