mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
30 lines
744 B
JavaScript
30 lines
744 B
JavaScript
|
import { generateModuleId } from "./generateHash.js";
|
||
|
|
||
|
export function buildTestUrl( modules, { browserstack, esm, jsdom, port, reportId } ) {
|
||
|
if ( !port ) {
|
||
|
throw new Error( "No port specified." );
|
||
|
}
|
||
|
|
||
|
const query = new URLSearchParams();
|
||
|
for ( const module of modules ) {
|
||
|
query.append( "moduleId", generateModuleId( module ) );
|
||
|
}
|
||
|
|
||
|
if ( esm ) {
|
||
|
query.append( "esmodules", "true" );
|
||
|
}
|
||
|
|
||
|
if ( jsdom ) {
|
||
|
query.append( "jsdom", "true" );
|
||
|
}
|
||
|
|
||
|
if ( reportId ) {
|
||
|
query.append( "reportId", reportId );
|
||
|
}
|
||
|
|
||
|
// BrowserStack supplies a custom domain for local testing,
|
||
|
// which is especially necessary for iOS testing.
|
||
|
const host = browserstack ? "bs-local.com" : "localhost";
|
||
|
return `http://${ host }:${ port }/test/?${ query }`;
|
||
|
}
|