aboutsummaryrefslogtreecommitdiffstats
path: root/tests/runner/server.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywil@users.noreply.github.com>2025-01-14 05:15:49 -0500
committerGitHub <noreply@github.com>2025-01-14 11:15:49 +0100
commitb6857536606d5d0dd1b07ada519f845cdac5c96e (patch)
treec12edf53f44ae773bb3b95d8e727da888e2188e9 /tests/runner/server.js
parent44b0b0af50999a86c30fb9a48214bf5a333527af (diff)
downloadjquery-ui-b6857536606d5d0dd1b07ada519f845cdac5c96e.tar.gz
jquery-ui-b6857536606d5d0dd1b07ada519f845cdac5c96e.zip
Tests: Migrate test runner to jquery-test-runner
Closes gh-2325
Diffstat (limited to 'tests/runner/server.js')
-rw-r--r--tests/runner/server.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/runner/server.js b/tests/runner/server.js
deleted file mode 100644
index 10fbc220f..000000000
--- a/tests/runner/server.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import { createTestServer } from "./createTestServer.js";
-
-const port = process.env.PORT || 3000;
-
-async function runServer() {
- const app = await createTestServer();
-
- app.listen( { port, host: "0.0.0.0" }, function() {
- console.log( `Open tests at http://localhost:${ port }/tests/` );
- } );
-}
-
-runServer();