Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save craigtaub/8cdda8034cbb211c1afd1485c166d809 to your computer and use it in GitHub Desktop.
Save craigtaub/8cdda8034cbb211c1afd1485c166d809 to your computer and use it in GitHub Desktop.
Runner.prototype.runTest = function(fn) {
var self = this
var test = this.test
if (!test) return
try {
// 1. run the test
test.run(fn)
} catch (err) {
fn(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment