wd-unit
Drive in-browser tests with WD.js.
Make sure you are running the latest node version
http://nodejs.org/#download
Install
npm install wd-unit
Authors
License
Running a test!
Start by importing the required library.
var launcher = require('wd-unit');
Then you can go ahead and launch your test by running the launcher
launcher.run({
runner: 'qunit',
page: 'testpage.html',
root: process.argv[1].slice(0, process.argv[1].lastIndexOf('/')),
});
Possible options are :
- runner: Unit testing framework. You can currently use Jasmine and Qunit.
- desired: Desired capabilities for the browser running the test.
- Default: {browserName: 'firefox'}
- addr: Base url with wich WD.js will work.
- page: Test are run from this page.
- root: Document root for the webserver.
- wd_args: Arguments to be passes to WD.js. Check out WD.js docs for more info.
Take a look at our example code
Want more frameworks ?
Check out the wiki about writting plugins.