Phantomjs guard automatically runs PhantomJS with a driver and a URL, usually a web server hosting tests. It executes the tests and displays the test result.
-
Tested on Ruby 1.8.7 & 1.9.2.
Please be sure to have Guard installed before continue.
Add guard definition to your Guardfile by running this command:
guard init phantomjs
Jasmine runner:
if (phantom.state.length === 0) { if (phantom.args.length !== 1) { console.log('Usage: run-jasmine.js URL'); phantom.exit(); } else { phantom.state = 'run-jasmine'; phantom.open(phantom.args[0]); } } else { window.setInterval(function () { if (document.body.querySelector('.finished-at')) { console.log(document.body.querySelector('.description').innerText); var failed = document.body.querySelectorAll('div.jasmine_reporter .spec.failed .description'); for (var i = 0, desc; desc = failed[i]; i++) { var message = [desc.title, desc.nextSibling.querySelector('.resultMessage.fail').innerText]; console.log(message.join(' => ')); } phantom.exit(failed.length); } }, 100); }
Save runner and pass its location to the guard as :runner
option, see Options below.
Please read Guard usage doc
The location of the test runner:
guard 'phantomjs', :runner => '...' do ... end
The url of the webserver hosting the test suite:
guard 'phantomjs', :server => '...' do ... end
-
Source hosted at GitHub
-
Report issues, questions, feature requests on GitHub Issues
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.