Tiny, but fully loaded test-runner.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

const { log } = console;
const _runTests = require('./lib/runTests');
const _expect = require('./lib/expect');
const { stringify } = require('../util/helpers');
6 years ago
class Gunner {
constructor () {
this.tests = [];
}
test (description, test) {
this.tests.push({
description,
test: () => test(_expect),
6 years ago
});
}
run (options = {}) {
process.stdout.write(`Running ${this.tests.length} tests...`);
return _runTests(this.tests)
.then(results => {
process.stdout.clearLine();
process.stdout.cursorTo(0);
const success = results.filter(r => r.result === 'pass');
const successPercent = Math.floor(success.length/results.length * 100);
if (('log' in options && options.log) || !('log' in options)) {
log(
`\n${success.length} tests passed of ${results.length}`,
`[${successPercent}% success]\n`
);
results.forEach(r => {
log(`${r.result === 'pass' ? '✅' : '❌'} ::`,
`${r.description}`,
`${options.stack ?
r.error
? `\n Traceback:\n ${stringify(r.error)}`
: ''
: ''}`);
});
}
return results;
});
6 years ago
}
}
module.exports = Gunner;
module.exports.expect = _expect;