We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef6976 commit c0c8b46Copy full SHA for c0c8b46
bin/run.js
@@ -56,16 +56,17 @@ var results = _(function(push) {
56
push(null, _.nil);
57
}).merge();
58
59
-results.on('end', function() {
60
- console.log("Took " + ((Date.now() - start) / 1000) + " seconds");
61
-})
62
63
if(t262.config.reporter === 'json') {
64
results.pipe(jss).pipe(process.stdout);
65
} else if(t262.config.reporter === 'tap') {
66
results.pipe(tapify).pipe(process.stdout);
67
} else if(t262.config.reporter === 'simple') {
68
results.pipe(simpleReporter);
+
+ results.on('end', function() {
+ console.log("Took " + ((Date.now() - start) / 1000) + " seconds");
69
+ })
70
}
71
72
// takes a test collateral stream.
0 commit comments