moved the transport request back into the transport, added when.js promises

This commit is contained in:
Spencer Alger
2013-11-14 14:30:24 -07:00
parent ffac604a25
commit 20804bb5ab
16 changed files with 386 additions and 32938 deletions

View File

@ -7,6 +7,7 @@ module.exports = function (grunt) {
var child_process = require('child_process');
var sharedBrowserfyExclusions = [
'when',
'src/lib/connectors/http.js',
'src/lib/loggers/file.js',
'src/lib/loggers/stdio.js',
@ -32,18 +33,18 @@ module.exports = function (grunt) {
}
},
mochaTest: {
unit: [
'test/unit/**/*.test.js'
],
yaml_suite: [
'test/integration/yaml_suite/index.js'
],
unit: 'test/unit/**/*.test.js',
yaml_suite: {
src: 'test/integration/yaml_suite/index.js',
options: {
reporter: require('./test/integration/yaml_suite/reporter')
}
},
options: {
colors: true,
require: 'should',
reporter: 'dot',
bail: true,
timeout: 11000
timeout: 11e3
}
},
jshint: {