Skip to content

Commit 58f793b

Browse files
author
Zhen
committed
Made tck only print failied tests
1 parent 34dfc80 commit 58f793b

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

gulpfile.js

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

package.json

+1
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

-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,6 @@ function stopDatabase() {
374374
var runScript = function(cmd) {
375375
var spawnSync = childProcess.spawnSync, child, code;
376376
child = spawnSync('python', cmd);
377-
console.log("Script Outputs:\n" + child.stdout.toString());
378377
var error = child.stderr.toString();
379378
if (error.trim() !== "")
380379
console.log("Script Errors:\n"+ error);

0 commit comments

Comments
 (0)