Skip to content

Instantly share code, notes, and snippets.

@airportyh
Created August 16, 2012 18:05
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/3372204 to your computer and use it in GitHub Desktop.
Save airportyh/3372204 to your computer and use it in GitHub Desktop.

On Windows

B:\testem\node_bug>node -v
v0.8.6

B:\testem\node_bug>mocha -V
1.3.2

B:\testem\node_bug>node spawn.js

B:\testem\node_bug>

On OSX Lion

$ node -v
v0.8.6
$ mocha -V
1.3.2
$ node spawn.js
1..1
ok 1 hello should say hello
var exec = require('child_process').exec
var spawn = require('child_process').spawn
var exe = process.platform === 'win32' ?
'C:\\Users\\airportyh\\AppData\\Roaming\\npm\\mocha.cmd' :
'mocha'
var p = spawn(exe, ['tests.js', '-R', 'tap'])
//var p = exec('mocha tests.js -R tap')
p.stdout.on('data', function(data){
process.stdout.write(data + '')
})
p.stderr.on('data', function(data){
process.stdout.write(data + '')
})
p.on('exit', function(){
process.exit(0)
})
setInterval(function(){}, 1000)
var assert = require('assert')
function hello(){
return 'hello world'
}
describe('hello', function(){
it('should say hello', function(){
assert.equal(hello(), 'hello world')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment