Skip to content

Commit cae6466

Browse files
author
Zhen
committed
Merge branch '1.0' into 1.1
2 parents 45ae671 + 58f793b commit cae6466

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ gulp.task('download-tck', function() {
177177
gulp.task('run-tck', ['download-tck', 'nodejs'], function() {
178178
return gulp.src(featureHome + "/*").pipe(cucumber({
179179
'steps': 'test/v1/tck/steps/*.js',
180-
'format': 'pretty',
180+
'format': 'progress',
181181
'tags' : ['~@fixed_session_pool', '~@db', '~@equality', '~@streaming_and_cursor_navigation']
182182
}));
183183
});

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"build": "gulp all",
1414
"start-neo4j": "gulp start-neo4j",
1515
"stop-neo4j": "gulp stop-neo4j",
16+
"run-tck": "gulp run-tck",
1617
"docs": "node_modules/.bin/esdoc -c esdoc.json"
1718
},
1819
"main": "lib/index.js",

test/v1/tck/steps/util.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,6 @@ function stopDatabase() {
375375
var runScript = function(cmd) {
376376
var spawnSync = childProcess.spawnSync, child, code;
377377
child = spawnSync('python', cmd);
378-
console.log("Script Outputs:\n" + child.stdout.toString());
379378
var error = child.stderr.toString();
380379
if (error.trim() !== "")
381380
console.log("Script Errors:\n"+ error);

0 commit comments

Comments
 (0)