compound-ex4
Version:
Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)
14 lines (12 loc) • 600 B
JavaScript
var test = require('../').test
test('not much', function(t) {
t.ok(true, 'always passes', {skip: true, explanation: 'skip it good'})
t.ok(false, 'false', {skip: true, explanation: 'always fails'})
t.ok(true, 'bonus', {todo: true, explanation: 'remove todo directive'})
t.ok(false, 'expected', {todo: true, explanation: 'implement a thing'})
t.ok(true, 'always passes without explanation', {skip: true})
t.ok(false, 'false without explanation', {skip: true})
t.ok(true, 'bonus without explanation', {todo: true})
t.ok(false, 'expected without explanation', {todo: true})
t.end()
})