Correct path to api-v3 integration files in gulp test task.

This commit is contained in:
Blade Barringer
2015-11-18 13:00:58 -06:00
parent 2dfca76a5e
commit a64085828b

View File

@@ -342,7 +342,7 @@ gulp.task('test:api-v3:unit:watch', () => {
gulp.task('test:api-v3:integration', ['test:prepare:server'], (done) => { gulp.task('test:api-v3:integration', ['test:prepare:server'], (done) => {
process.env.API_VERSION = 'v3'; process.env.API_VERSION = 'v3';
awaitPort(TEST_SERVER_PORT).then(() => { awaitPort(TEST_SERVER_PORT).then(() => {
runMochaTests('./test/api/v3/unit/**/*.js', server, done) runMochaTests('./test/api/v3/integration/**/*.js', server, done)
}); });
}); });