mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Excluded a couple Ajax tests from running locally.
This commit is contained in:
parent
c39bd07cc9
commit
2e6c123c87
@ -217,6 +217,7 @@ test("$('html', context)", function() {
|
|||||||
equals($span.length, 1, "Verify a span created with a div context works, #1763");
|
equals($span.length, 1, "Verify a span created with a div context works, #1763");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if ( !isLocal ) {
|
||||||
test("$(selector, xml).text(str) - Loaded via XML document", function() {
|
test("$(selector, xml).text(str) - Loaded via XML document", function() {
|
||||||
expect(2);
|
expect(2);
|
||||||
stop();
|
stop();
|
||||||
@ -228,6 +229,7 @@ test("$(selector, xml).text(str) - Loaded via XML document", function() {
|
|||||||
start();
|
start();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
test("length", function() {
|
test("length", function() {
|
||||||
expect(1);
|
expect(1);
|
||||||
@ -950,7 +952,7 @@ test("find(String)", function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("clone()", function() {
|
test("clone()", function() {
|
||||||
expect(6);
|
expect(4);
|
||||||
ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
|
ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
|
||||||
var clone = $('#yahoo').clone();
|
var clone = $('#yahoo').clone();
|
||||||
ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
|
ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
|
||||||
@ -958,7 +960,11 @@ test("clone()", function() {
|
|||||||
// using contents will get comments regular, text, and comment nodes
|
// using contents will get comments regular, text, and comment nodes
|
||||||
var cl = $("#nonnodes").contents().clone();
|
var cl = $("#nonnodes").contents().clone();
|
||||||
ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );
|
ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!isLocal) {
|
||||||
|
test("clone() on XML nodes", function() {
|
||||||
|
expect(2);
|
||||||
stop();
|
stop();
|
||||||
$.get("data/dashboard.xml", function (xml) {
|
$.get("data/dashboard.xml", function (xml) {
|
||||||
var root = $(xml.documentElement).clone();
|
var root = $(xml.documentElement).clone();
|
||||||
@ -969,6 +975,7 @@ test("clone()", function() {
|
|||||||
start();
|
start();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
test("is(String)", function() {
|
test("is(String)", function() {
|
||||||
expect(26);
|
expect(26);
|
||||||
|
Loading…
Reference in New Issue
Block a user