Skip to content

titulus/test.it-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

test.it-nodejs

node.js output module for test.it framework

Install

  • 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.*

Example

console