GitXplorerGitXplorer
t

adventure-verify

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
b61b5340b8f835839089c274185f84e970a02a4e

2.0.0

iinvalid-email-address committed 11 years ago
Unverified
dfdcd48e233a3b7357fb55c60b2a1fdd2c706fe9

swap out faucet, swap in tap-colorize

iinvalid-email-address committed 11 years ago
Unverified
ad3997bf539151c6b2e2529931b597d036a9ffa5

1.0.3

iinvalid-email-address committed 11 years ago
Unverified
9d5a1c9f6028f596346ca555af768e2eb8af8d0d

updated docs for adventure 2.0.0

iinvalid-email-address committed 11 years ago
Unverified
3e7d49e0a1ddbeda158319f4b565187f579cf8ce

1.0.1

iinvalid-email-address committed 11 years ago
Unverified
d8ca982db47ad3b9f4d1e2ea316b7926cc9ea10e

updated docs with fully standalone example

iinvalid-email-address committed 11 years ago

README

The README file for this repository.

adventure-verify

write adventure verify functions using tape with colored output to better distinguish user output from test output

example

In your excercise code, you can do:

var verify = require('adventure-verify');

exports.problem = 'pass in the argument 555'

exports.verify = verify(function (args, t) {
    t.plan(1);
    t.equal(args[0], '555');
});

And then run plug your beep_boop.js excercise into your adventure runner:

var adventure = require('adventure');
var adv = adventure('robots');

adv.add('beep boop', function () {
    return require('./beep_boop.js');
});

adv.execute(process.argv.slice(2));

methods

var verify = require('adventure-verify')

var fn = verify(opts={}, function (args, t) {})

You should pass in a function that will get args, the command-line arguments supplied after the xxx-adventure verify ... command on the command line and t, a tape instance.

The function fn(cb) returned by verify() fits into the signature expected by adventure. cb(ok) will be called with a boolean ok based on parsing the tap output from tape for any failures.

The options opts will be passed to tap-colorize. These options work:

  • opts.pass - color of passing /^ok/ lines
  • opts.fail - color of failing /^not ok/ lines
  • opts.info - color of other tap-specific lines

You can pass in a named color such as 'green', an array rgb color such as [40,240,100], a hex color such as ''#f00d55', and you can include a display modifier such as 'bright', 'dim' or 'reverse'.

You can optionally set opts.modeReset, which hacks the colors back temporarily for console.log() and console.error() so that user debugging statements are printed without colors.

install

With npm do:

npm install adventure-verify

license

MIT