diff options
Diffstat (limited to 'test/unit/manipulation.js')
-rw-r--r-- | test/unit/manipulation.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index e8c183f3c..5ef64ed54 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -626,7 +626,7 @@ test("append(xml)", function() { }); test("appendTo(String|Element|Array<Element>|jQuery)", function() { - expect(17); + expect( 16 + ( jQuery.getScript ? 1 : 0 ) ); var defaultText = "Try them out:" jQuery("<b>buga</b>").appendTo("#first"); @@ -699,11 +699,13 @@ test("appendTo(String|Element|Array<Element>|jQuery)", function() { QUnit.reset(); - stop(); - jQuery.getScript('data/test.js', function() { - jQuery('script[src*="data\\/test\\.js"]').remove(); - start(); - }); + if ( jQuery.getScript ) { + stop(); + jQuery.getScript('data/test.js', function() { + jQuery('script[src*="data\\/test\\.js"]').remove(); + start(); + }); + } }); var testPrepend = function(val) { |