Skip to content

Commit 72a852f

Browse files
Added Console statements for live test status
1 parent bb691ef commit 72a852f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/webpagetest.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -586,11 +586,11 @@ function runTestAndWait(what, options, callback) {
586586
(!data || (data && data.data && data.statusCode !== 200)) &&
587587
!(typeof err === "number" && data === undefined)
588588
) {
589-
// console.log(
590-
// data && data.data && data.data.statusText
591-
// ? data.data.statusText
592-
// : "Testing in progress"
593-
// );
589+
console.log(
590+
data && data.data && data.data.statusText
591+
? data.data.statusText
592+
: "Testing in progress"
593+
);
594594
polling = setTimeout(
595595
getTestResults.bind(this, testId, resultsOptions, poll.bind(this)),
596596
options.pollResults

0 commit comments

Comments
 (0)