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.
 
 

41 lines
900 B

const _runTests = require('./lib/runTests');
const _expect = require('./lib/expect');
const { stringify } = require('../util/helpers');
class Gunner {
constructor () {
this.tests = [];
}
test (description, test) {
this.tests.push({
description,
test: () => test(_expect),
});
}
run () {
return _runTests(this.tests)
.then(results => {
const success = results.filter(r => r.result === 'pass');
const successPercent = Math.floor(success.length/results.length * 100);
console.log(
`\n${success.length} tests passed of ${results.length}`,
`[${successPercent}% success]\n`
);
results.forEach(r => {
console.log(`${r.result === 'pass' ? '✅' : '❌'} ::`,
`${r.description}`,
`${r.error ? `\n Traceback:\n ${stringify(r.error)}` : ''}`);
});
return results;
});
}
}
module.exports = Gunner;
module.exports.assert = _expect;