diff options
author | jrburke <jrburke@gmail.com> | 2011-11-14 12:13:25 -0500 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-11-14 12:13:25 -0500 |
commit | 8bc60bab5dd9747e7ae06c3fdb0c60782d346ff0 (patch) | |
tree | 90008a3a96f1ccb50f0a69f3f782fdcf3f075a8c /test/unit/core.js | |
parent | 499d7e409c4f4d4ed255148e59552763cccf4260 (diff) | |
download | jquery-8bc60bab5dd9747e7ae06c3fdb0c60782d346ff0.tar.gz jquery-8bc60bab5dd9747e7ae06c3fdb0c60782d346ff0.zip |
Landing pull request 586. Create exports.js for exporting jQuery to window and AMD. Fixes #10687.
More Details:
- https://github.com/jquery/jquery/pull/586
- http://bugs.jquery.com/ticket/10687
Diffstat (limited to 'test/unit/core.js')
-rw-r--r-- | test/unit/core.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index 24da8db6c..d8906b89f 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -225,12 +225,6 @@ test("browser", function() { }); } -test("amdModule", function() { - expect(1); - - equal( jQuery, amdDefined, "Make sure defined module matches jQuery" ); -}); - test("noConflict", function() { expect(7); @@ -534,7 +528,7 @@ test("isXMLDoc - HTML", function() { test("XSS via location.hash", function() { expect(1); - + stop(); jQuery._check9521 = function(x){ ok( x, "script called from #id-like selector with inline handler" ); |