Skip to content

Commit d051e0e

Browse files
authored
Tests: Make Ajax tests pass in iOS 9
Accept "HTTP/2.0 200" as a valid `statusText` for successful requests to make ajax tests pass in iOS 9. At this point, normalizing this in code doesn't seem to make a lot of sense. Closes gh-5121
1 parent c0db6d7 commit d051e0e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/unit/ajax.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1640,8 +1640,14 @@ QUnit.module( "ajax", {
16401640
var done = assert.async();
16411641
jQuery.ajax( url( "mock.php?action=status&code=200&text=Hello" ) ).done( function( _, statusText, jqXHR ) {
16421642
assert.strictEqual( statusText, "success", "callback status text ok for success" );
1643-
assert.ok( [ "Hello", "OK", "success" ].indexOf( jqXHR.statusText ) > -1,
1643+
1644+
// Support: iOS 9 only
1645+
// Some versions of iOS 9 return the "HTTP/2.0 200" status text
1646+
// in this case; accept it.
1647+
assert.ok(
1648+
[ "Hello", "OK", "success", "HTTP/2.0 200" ].indexOf( jqXHR.statusText ) > -1,
16441649
"jqXHR status text ok for success (" + jqXHR.statusText + ")" );
1650+
16451651
jQuery.ajax( url( "mock.php?action=status&code=404&text=World" ) ).fail( function( jqXHR, statusText ) {
16461652
assert.strictEqual( statusText, "error", "callback status text ok for error" );
16471653
done();

0 commit comments

Comments
 (0)