非常mini的单元测试模块 mut (玩具)
地址: https://github.com/hit9/mut
不是一个测试工具,是一个测试的模块.
示例:
var assert = require('assert');
var unit = require('./mut');
unit('example', function(test) {
test('case1', function(done) {
// should fail
assert(1 + 2 == 1);
done();
});
test('case2', function(done) {
// should pass
setTimeout(function() {
assert(1 + 2 == 3);
done();
}, 1000);
});
test('case3', function(done) {
// should fail
process.nextTick(function() {
assert(1 + 3 == 5);
done();
})
});
});
执行 node mytests.js 来跑起测试来…
纯属分享,不必深读~ 单纯纯地来求star的…
1 回复
不错,加一个bin更好