You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2012/08/08 22:11:13 UTC

js commit: Make jake test report about missing jsdom npm instead of a generic message

Updated Branches:
  refs/heads/master b8fae990b -> a8d77992c


Make jake test report about missing jsdom npm instead of a generic message


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/a8d77992
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/a8d77992
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/a8d77992

Branch: refs/heads/master
Commit: a8d77992cde66e1d36cade06c8c78482e5a124e6
Parents: b8fae99
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Aug 8 16:10:05 2012 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Aug 8 16:10:05 2012 -0400

----------------------------------------------------------------------
 test/runner.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/a8d77992/test/runner.js
----------------------------------------------------------------------
diff --git a/test/runner.js b/test/runner.js
index 4f05263..9d1e4e6 100644
--- a/test/runner.js
+++ b/test/runner.js
@@ -32,7 +32,7 @@ module.exports = {
             window = document.createWindow();
         } catch (e) {
             //no jsDom (some people don't have compilers)
-            console.log("can't run tests in node: run jake btest instead");
+            console.log("can't run tests in node: run jake btest instead, or install jsdom via: sudo npm install jsdom");
             return;
         }