You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2014/05/06 21:20:49 UTC

[3/4] git commit: Fix: use globally defined describe

Fix: use globally defined describe


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

Branch: refs/heads/cdvtest
Commit: d9924127770216e057fe5910e81ea9506be15559
Parents: f767bbf
Author: Michal Mocny <mm...@gmail.com>
Authored: Tue May 6 14:05:38 2014 -0400
Committer: Michal Mocny <mm...@gmail.com>
Committed: Tue May 6 14:05:38 2014 -0400

----------------------------------------------------------------------
 cordova-plugin-test-framework/www/tests.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-labs/blob/d9924127/cordova-plugin-test-framework/www/tests.js
----------------------------------------------------------------------
diff --git a/cordova-plugin-test-framework/www/tests.js b/cordova-plugin-test-framework/www/tests.js
index 0fc2f68..87b1069 100644
--- a/cordova-plugin-test-framework/www/tests.js
+++ b/cordova-plugin-test-framework/www/tests.js
@@ -44,7 +44,7 @@ function requireAllTestModules() {
 
       if (plugintests.hasOwnProperty('defineAutoTests')) {
         getTestsObject(id).defineAutoTests = function() {
-          jasmineInterface.describe(id + ' >>', plugintests.defineAutoTests.bind(plugintests));
+          describe(id + ' >>', plugintests.defineAutoTests.bind(plugintests));
         };
       }