mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
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:
parent
4db04433ff
commit
eef3d2d6fa
1 changed files with 4 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue