mirror of https://github.com/n2geoff/testit.git
docs & comments
This commit is contained in:
parent
b1bd8bf47d
commit
f38a7fe295
|
@ -55,7 +55,7 @@ Error: just wanted to fail fast
|
||||||
|
|
||||||
A `+OK` will proceed test lines that *pass* and a `-ERR` for those that *fail*, An error stack is included by default after the failing test wrapped in `---`. You can suppress outputing the error stack by passing `false` as an argument to `run()`, ie `run(false)`.
|
A `+OK` will proceed test lines that *pass* and a `-ERR` for those that *fail*, An error stack is included by default after the failing test wrapped in `---`. You can suppress outputing the error stack by passing `false` as an argument to `run()`, ie `run(false)`.
|
||||||
|
|
||||||
You can, however, write your own custom test runner...
|
You can, also, write your own custom test runner...
|
||||||
|
|
||||||
### Custom Test Runners
|
### Custom Test Runners
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@ While you can use your own assertion library, the included `expects` provides th
|
||||||
|
|
||||||
| Methods | Description |
|
| Methods | Description |
|
||||||
| --------------------------------- | --------------------------------------- |
|
| --------------------------------- | --------------------------------------- |
|
||||||
| `.expects(tests).to.exist()` | truthy evalution if value exists |
|
| `.expects(tests).to.exist()` | truthy evalution `.exist` or `.be.ok()` |
|
||||||
| `.expects().to.pass()` | pass test |
|
| `.expects().to.pass()` | pass test |
|
||||||
| `.expects().to.fail(message)` | fails test with message |
|
| `.expects().to.fail(message)` | fails test with message |
|
||||||
| `.expects(this).to.equal(that)` | strictly equal evaluation using `===` |
|
| `.expects(this).to.equal(that)` | strictly equal evaluation using `===` |
|
||||||
|
|
|
@ -14,10 +14,10 @@ fs.readdir(__dirname, function(err, files) {
|
||||||
|
|
||||||
console.log(`: ${file}`);
|
console.log(`: ${file}`);
|
||||||
|
|
||||||
var me = fs.readFileSync(path.join(__dirname, file))
|
var me = fs.readFileSync(path.join(__dirname, file));
|
||||||
|
|
||||||
// eval maybe evil, but its your code, are you evil?
|
// eval maybe evil, but it is YOUR code, are you evil?
|
||||||
eval(me.toString());
|
eval(me.toString()); // jshint ignore:line
|
||||||
|
|
||||||
test.run();
|
test.run();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue