Skip to content

Commit 19ced96

Browse files
authored
Tests: Allow statusText to be "success" in AJAX tests
In HTTP/2, status message is not supported and whatever is reported as statusText differs between browsers. In Chrome & Safari it's "success", in Firefox & IE it's "OK". So far "success" wasn't allowed. This made the tests pass locally if you're running an HTTP/1.1 server but on TestSwarm which is now proxied via an HTTP/2-equipped Cloudflare, the relevant test started failing in Chrome & Safari. Allow "success" to resolve the issue. Closes gh-4973
1 parent e23190e commit 19ced96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/unit/ajax.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1704,7 +1704,8 @@ QUnit.module( "ajax", {
17041704
var done = assert.async();
17051705
jQuery.ajax( url( "mock.php?action=status&code=200&text=Hello" ) ).done( function( _, statusText, jqXHR ) {
17061706
assert.strictEqual( statusText, "success", "callback status text ok for success" );
1707-
assert.ok( jqXHR.statusText === "Hello" || jqXHR.statusText === "OK", "jqXHR status text ok for success (" + jqXHR.statusText + ")" );
1707+
assert.ok( [ "Hello", "OK", "success" ].indexOf( jqXHR.statusText ) > -1,
1708+
"jqXHR status text ok for success (" + jqXHR.statusText + ")" );
17081709
jQuery.ajax( url( "mock.php?action=status&code=404&text=World" ) ).fail( function( jqXHR, statusText ) {
17091710
assert.strictEqual( statusText, "error", "callback status text ok for error" );
17101711
done();

0 commit comments

Comments
 (0)