Ensure a server isn't already running

Was confused why these tests were failing on my end. Turned out I had a service running on 8080 and had to kill it to get these tests to pass
This commit is contained in:
Marin Minnerly 2024-01-14 14:33:50 -08:00
parent 4db04433ff
commit eef3d2d6fa

View file

@ -8,6 +8,10 @@ local URL = `http://127.0.0.1:{PORT}`
local URL_EXTERNAL = `http://0.0.0.0:{PORT}`
local RESPONSE = "Hello, lune!"
-- A server should never be running before testing
local isRunning = pcall(net.request, URL)
assert(not isRunning, `A server is already running at {URL}`)
-- Serve should not block the thread from continuing
local thread = task.delay(1, function()