/chook-zombie

Experimental Zombie support for Chook

Primary LanguageJavaScriptMIT LicenseMIT

chook-zombie

Zombie browser for Chook, the headless, framework-agnostic unit test runner for Node.js

Getting Started

Install Chook with: npm install chook

Install the module with: npm install https://github.com/markdalgleish/chook-zombie/tarball/master

var chook = require('chook'),
    chook_jstestdriver = require('chook-jstestdriver'),
    chook_zombie = require('chook-zombie');

chook.configure(function(){
    chook.use( chook_jstestdriver({configPath: '/path/to/JsTestDriver.conf'}) );
    chook.use( chook_zombie() );
});

chook.run().on('complete', function(results) {
    console.log(results);
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

License

Copyright (c) 2012 Mark Dalgleish
Licensed under the MIT license.