Skip to content

Commit df6858d

Browse files
authored
Tests: Recognize callbacks with dots in the Node.js mock server
This aligns the Node.js server with the previous PHP one in sending `mock.php` as a callback if there's no `callback` parameter in the query string which is triggered by a recently added test. This prevents the request crashing on that Node.js server and printing a JS error: ``` TypeError: Cannot read property '1' of null ``` Closes gh-4764 Ref gh-4754
1 parent c18dc49 commit df6858d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/middleware-mockserver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ var mocks = {
101101
} else if ( req.query.callback ) {
102102
callback = Promise.resolve( req.query.callback );
103103
} else if ( req.method === "GET" ) {
104-
callback = Promise.resolve( req.url.match( /^.+\/([^\/?.]+)\?.+$/ )[ 1 ] );
104+
callback = Promise.resolve( req.url.match( /^.+\/([^\/?]+)\?.+$/ )[ 1 ] );
105105
} else {
106106
callback = getBody( req ).then( function( body ) {
107107
return body.trim().replace( "callback=", "" );

0 commit comments

Comments
 (0)