aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test-clipboard.js3
-rw-r--r--tests/test-util.js1
2 files changed, 1 insertions, 3 deletions
diff --git a/tests/test-clipboard.js b/tests/test-clipboard.js
index 513eaf8..917376d 100644
--- a/tests/test-clipboard.js
+++ b/tests/test-clipboard.js
@@ -44,9 +44,8 @@ exports.ensureClipboardUnicode = function ensureClipboard(test) {
exports.ensureClipboardGetFlavors = function ensureClipboardGetFlavors(test) {
clip.set(pushkinTestString);
var available = clip.getCurrentFlavors();
- console.log("available = " + available);
test.assertEqual(JSON.stringify(available),'["plain"]',
"checking getFlavors method");
};
-// TODO: test for some weird mimeType which is not supported \ No newline at end of file
+// TODO: test for some weird mimeType which is not supported
diff --git a/tests/test-util.js b/tests/test-util.js
index a9d0e6a..70f5218 100644
--- a/tests/test-util.js
+++ b/tests/test-util.js
@@ -185,7 +185,6 @@ exports.ensureLoadText = function (test) {
// var url = "http://matej.ceplovi.cz/progs/data/pushkin.txt", text = "";
// test.waitUntilDone();
// util.loadText(url, function (txt) {
-// console.log(txt);
// //test.assertEqual(txt, pushkinTestString);
// test.done();
// });