aboutsummaryrefslogtreecommitdiffstats
path: root/tests/runner/lib/buildTestUrl.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner/lib/buildTestUrl.js')
-rw-r--r--tests/runner/lib/buildTestUrl.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/runner/lib/buildTestUrl.js b/tests/runner/lib/buildTestUrl.js
deleted file mode 100644
index 5eb3b049b..000000000
--- a/tests/runner/lib/buildTestUrl.js
+++ /dev/null
@@ -1,24 +0,0 @@
-export function buildTestUrl( suite, { browserstack, jquery, migrate, port, reportId } ) {
- if ( !port ) {
- throw new Error( "No port specified." );
- }
-
- const query = new URLSearchParams();
-
- if ( jquery ) {
- query.append( "jquery", jquery );
- }
-
- if ( migrate ) {
- query.append( "migrate", "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 }/tests/unit/${ suite }/${ suite }.html?${ query }`;
-}