Skip to content

Instantly share code, notes, and snippets.

@airportyh
Created August 16, 2012 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airportyh/3366250 to your computer and use it in GitHub Desktop.
Save airportyh/3366250 to your computer and use it in GitHub Desktop.
var exec = require('child_process').exec
var spawn = require('child_process').spawn
var p = spawn('mocha', ['tests.js', '-R', 'tap'])
p.stdout.on('data', function(data){
process.stdout.write(data + '')
})
p.on('exit', function(){
process.exit(0)
})
setInterval(function(){}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment