node.js output module for test.it framework
- First: install framework and output module
npm install 'test.it' npm install 'test.it-nodejs' ```
**Hint:** *you can use [`-g`](https://npmjs.org/doc/install.html) flag to install them globally*
- Second: add core of framework and output module, set it as default printer
test = require('test.it');
nodeConsole = require('test.it-nodejs');
test.printer(nodeConsole);
btw you can use this construction:
javascript
(test = require('test.it')).printer(require('test.it-nodejs'));
```
**Info:** *Output module is not required! You can use test.it without any output at all.*