aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2016-07-06 13:09:15 -0400
committerScott González <scott.gonzalez@gmail.com>2016-07-06 13:09:15 -0400
commit9d807ba1095de773bc78fda077fcc2a0bfc25eac (patch)
treeb5a40ed315a8779eedfb6aa49a113b0729d97315 /tests/unit
parent71b93ed2473313f5f95439fb6f287ee22d0e19e1 (diff)
downloadjquery-ui-9d807ba1095de773bc78fda077fcc2a0bfc25eac.tar.gz
jquery-ui-9d807ba1095de773bc78fda077fcc2a0bfc25eac.zip
Tabs: Remove test for Ajax URLs containing hashes
This hasn't been a problem for a long time and jQuery no longer removes the hash in 3.0.0, so the test started to fail even though the actual code is working just fine. Ref #3627 Ref jquery/jquery#1732
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/tabs/core.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/unit/tabs/core.js b/tests/unit/tabs/core.js
index c0097ecfb..f367b098e 100644
--- a/tests/unit/tabs/core.js
+++ b/tests/unit/tabs/core.js
@@ -647,18 +647,6 @@ QUnit.test( "keyboard support - CTRL+UP, ALT+PAGE_DOWN, ALT+PAGE_UP", function(
setTimeout( step1 );
} );
-QUnit.test( "#3627 - Ajax tab with url containing a fragment identifier fails to load", function( assert ) {
- assert.expect( 1 );
-
- $( "#tabs2" ).tabs( {
- active: 2,
- beforeLoad: function( event, ui ) {
- event.preventDefault();
- assert.ok( /test.html$/.test( ui.ajaxSettings.url ), "should ignore fragment identifier" );
- }
- } );
-} );
-
QUnit.test( "#4033 - IE expands hash to full url and misinterprets tab as ajax", function( assert ) {
assert.expect( 2 );