fix(task): spec task uses Promise

This commit is contained in:
Evan Morikawa 2015-11-26 13:03:44 -08:00
parent 79413e7c45
commit 2dea234de0
2 changed files with 2 additions and 1 deletions

View file

@ -9,7 +9,7 @@
"asar": "^0.8",
"async": "~0.2.9",
"babel-eslint": "^4.1.3",
"bluebird": "^2.3",
"bluebird": "^3.0",
"coffee-react-transform": "^3.1.0",
"coffeelint-cjsx": "^2.0",
"donna": "1.0.10",

View file

@ -1,6 +1,7 @@
fs = require 'fs'
path = require 'path'
request = require 'request'
Promise = require 'bluebird'
childProcess = require 'child_process'
executeTests = ({cmd, args}, grunt, done) ->