Skip to content

Commit

Permalink
test(client): revert to original changes
Browse files Browse the repository at this point in the history
  • Loading branch information
knagaitsev committed Jun 29, 2019
1 parent ad7a5b5 commit 8faed38
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion client-src/default/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ const onSocketMessage = {
}
},
'progress-update': function progressUpdate(data) {
console.log(data.msg);
if (options.useProgress) {
log.info(`[WDS] ${data.percent}% - ${data.msg}.`);
}
Expand Down
1 change: 0 additions & 1 deletion lib/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ class Server {
msg = `${msg} (${addInfo})`;
}

console.log(`progress-update: ${percent} ${msg}`);
this.sockWrite(this.sockets, 'progress-update', { percent, msg });
}
);
Expand Down
1 change: 0 additions & 1 deletion test/e2e/Progress.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ describe('client progress', () => {
);
page.waitFor(10000).then(() => {
browser.close().then(() => {
console.log(res);
// check that there is some percentage progress output
const regExp = /^\[WDS\] [0-9]{1,3}% - /;
const match = res.find((line) => {
Expand Down

0 comments on commit 8faed38

Please sign in to comment.