aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/helpers/request.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/helpers/request.ts')
-rw-r--r--server/tests/helpers/request.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/helpers/request.ts b/server/tests/helpers/request.ts
index a85d80b88..363237df5 100644
--- a/server/tests/helpers/request.ts
+++ b/server/tests/helpers/request.ts
@@ -41,7 +41,7 @@ describe('Request helpers', function () {
41 const port = await mock.initialize() 41 const port = await mock.initialize()
42 42
43 const before = new Date().getTime() 43 const before = new Date().getTime()
44 await doRequest('http://localhost:' + port) 44 await doRequest('http://127.0.0.1:' + port)
45 45
46 expect(new Date().getTime() - before).to.be.greaterThan(2000) 46 expect(new Date().getTime() - before).to.be.greaterThan(2000)
47 47