aboutsummaryrefslogtreecommitdiff
path: root/testlib
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-08 16:53:29 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-08 16:53:29 +0100
commit8ab029430c105b6428914127960d9bec3f431630 (patch)
tree84b4ba1d55b699fb5de71e79470865d4c3c85bd0 /testlib
parent5dfa8d79e1ec28093056e5f52529ee3103361534 (diff)
downloadwallet-core-8ab029430c105b6428914127960d9bec3f431630.tar.xz
remove logging
Diffstat (limited to 'testlib')
-rw-r--r--testlib/selenium/runtime.js5
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));