diff options
author | Timmy Willison <timmywil@users.noreply.github.com> | 2025-01-14 05:15:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-14 11:15:49 +0100 |
commit | b6857536606d5d0dd1b07ada519f845cdac5c96e (patch) | |
tree | c12edf53f44ae773bb3b95d8e727da888e2188e9 /tests/runner/server.js | |
parent | 44b0b0af50999a86c30fb9a48214bf5a333527af (diff) | |
download | jquery-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.js | 13 |
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(); |