blob: 58ae8f3d5082da7e32b9ac82cc768ced44bd3c34 [file] [log] [blame]
var test = require('../');
test(function(t) {
var i = 0
t.test('setup', function(t) {
process.nextTick(function() {
t.equal(i, 0, 'called once')
i++
t.end()
})
})
t.test('teardown', function(t) {
t.end()
})
t.end()
})