diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-08 16:53:29 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-08 16:53:29 +0100 |
commit | 8ab029430c105b6428914127960d9bec3f431630 (patch) | |
tree | 84b4ba1d55b699fb5de71e79470865d4c3c85bd0 /testlib/selenium | |
parent | 5dfa8d79e1ec28093056e5f52529ee3103361534 (diff) |
remove logging
Diffstat (limited to 'testlib/selenium')
-rw-r--r-- | testlib/selenium/runtime.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/testlib/selenium/runtime.js b/testlib/selenium/runtime.js index 2253bafbc..d12cb04be 100644 --- a/testlib/selenium/runtime.js +++ b/testlib/selenium/runtime.js @@ -37,8 +37,6 @@ var p = `http://localhost:${httpPort}/testlib/selenium/testhost.html`; var argv = require('minimist')(process.argv.slice(2), {"boolean": ["keep-open"]}); -console.log(argv); - function printUsage() { console.log(`Usage: [--keep-open] TESTSCRIPT`); } @@ -57,9 +55,6 @@ if (!testScriptName.startsWith(projectRoot)) { } var testScript = "./" + testScriptName.substring(projectRoot.length); -console.log("test script:", testScript); -console.log("test script name:", testScriptName); -console.log("root:", projectRoot); try { var stats = fs.lstatSync(path.resolve(projectRoot, testScript)); |