File tree 1 file changed +5
-3
lines changed
Filter options
1 file changed +5
-3
lines changed
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const BATCH_WAIT = 500;
15
15
// Request timeout, ms:
16
16
const REQ_TIMEOUT = 40000 ;
17
17
// Print more messages if true:
18
- const VERBOSE = false ;
18
+ const VERBOSE = true ;
19
19
// Randomize test ordering (otherwise glob sorting is used):
20
20
const RANDOMIZE = false ;
21
21
@@ -125,7 +125,8 @@ function runReq(req, completion) {
125
125
successes ++ ;
126
126
}
127
127
if ( VERBOSE ) {
128
- console . log ( ' Service time: ' + ( Date . now ( ) - reqStart ) ) ;
128
+ console . log ( ' Service time: ' + ( Date . now ( ) - reqStart ) +
129
+ ', Actual time: ' + Date . now ( ) ) ;
129
130
}
130
131
return completion ( ) ;
131
132
}
@@ -141,7 +142,8 @@ function runReq(req, completion) {
141
142
successes ++ ;
142
143
}
143
144
if ( VERBOSE ) {
144
- console . log ( ' Service time: ' + ( Date . now ( ) - reqStart ) ) ;
145
+ console . log ( ' Service time: ' + ( Date . now ( ) - reqStart ) +
146
+ ', Actual time: ' + Date . now ( ) ) ;
145
147
}
146
148
147
149
return completion ( ) ;
You can’t perform that action at this time.
0 commit comments