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>
$ 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 p = exec('mocha tests.js -R tap') | |
| p.stdout.on('data', function(data){ | |
| process.stdout.write(data + '') | |
| }) | |
| p.stdout.on('end', function(err, data){ | |
| 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') | |
| }) | |
| }) | |