TDD testing framework.
Availible in nodejs
- to use dev console instead of page DOM (in browser)
- to avoid crashes
- to avoid differences in results of tests of one and the same code
- to provide the ease of use
- to provide async testing
- to provide particular output
- multilevel nesting
- chaining
- OOP
- Strategy pattern
- validity of expression or value
- equality between 2 or more values
- constructor (type) of value
===
There are some differences between usage test.it in different environment like browser or nodejs.
-
First: add core of framework
<script src='path/to/test.it.js'></script>
-
Next: add output strategy and set
firebugConsole
as default printer<script src='path/to/test.it-firebug.js'></script> <script>test.printer(firebugConsole);</script>
Of course you can include
test.printer(firebugConsole);
in your tests script.
Hint: add <script>
tags to the end of your <body>
tag.
btw you can use this construction:
<!-- framework -->
<script src='./test.it.js'></script>
<!-- print to firebug console -->
<script src='./test.it-firebug.js'></script>
<!-- set firebugConsole as default printer -->
<script>test.printer(firebugConsole);</script>
<!-- your script -->
<script src='./script.js'></script>
<!-- your tests -->
<script src='./tests.js'></script>
<!-- a trick to not worry about the call of test.print() -->
<script>test.print();</script>
-
First: install framework and output module
npm install 'test.it' npm install 'test.it-nodejs'
Hint: you can use
-g
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:
(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.
It's repo takes place here
===
You can find the API manual on wiki
Look at it right here