From 2e6c123c875991792a8a701e108248e0b89524d4 Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 14 Jan 2008 20:17:21 +0000 Subject: [PATCH] Excluded a couple Ajax tests from running locally. --- test/unit/core.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/unit/core.js b/test/unit/core.js index b2cf8f1..1d8fb6d 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -217,6 +217,7 @@ test("$('html', context)", function() { 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() { expect(2); stop(); @@ -228,6 +229,7 @@ test("$(selector, xml).text(str) - Loaded via XML document", function() { start(); }); }); +} test("length", function() { expect(1); @@ -950,7 +952,7 @@ test("find(String)", function() { }); test("clone()", function() { - expect(6); + expect(4); ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' ); var clone = $('#yahoo').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 var cl = $("#nonnodes").contents().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(); $.get("data/dashboard.xml", function (xml) { var root = $(xml.documentElement).clone(); @@ -969,6 +975,7 @@ test("clone()", function() { start(); }); }); +} test("is(String)", function() { expect(26); -- 1.7.10.4