switched to bluebird for promise support

This commit is contained in:
Spencer Alger
2014-03-27 09:49:21 -07:00
parent a91d6b76b9
commit 4ab22a1a61
8 changed files with 23 additions and 18 deletions

View File

@ -1,5 +1,6 @@
var specDir = __dirname + '/specs';
require('bluebird').longStackTraces();
var specDir = __dirname + '/specs';
require('fs').readdirSync(specDir).forEach(function (file) {
require(specDir + '/' + file);
});