Created
January 23, 2013 21:47
-
-
Save davidcornu/4614035 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Mocha = require('mocha'); | |
var path = require('path'); | |
var testFile = path.resolve(__dirname, './test_file.js'); | |
var set1 = new Mocha; | |
set1.addFile(testFile); | |
var set2 = new Mocha; | |
set2.addFile(testFile); | |
set1.run(function(failures1){ | |
set2.run(function(failures2){ | |
process.exit(failures1 && failures2); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment