Skip to content

Commit d31a977

Browse files
authored
Merge pull request #18 from HDegroote/more-time-for-request
(tests) Add more time before timeout on request
2 parents 6be8d93 + a19f646 commit d31a977

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/end-to-end-tests.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ test('Cannot access private-mode server with public key', async t => {
3434
const clientPort = await setupHyperteleClient(pubKey, bootstrap, t, { isPrivate: false })
3535

3636
// Could also be a socket hangup if more time is given
37-
await t.exception(async () => await request(clientPort), /Request timeout/)
37+
await t.exception(async () => await request(clientPort, { msTimeout: 1000 }), /Request timeout/)
3838
})
3939

4040
test('Can proxy in non-private mode', async t => {
@@ -125,7 +125,7 @@ async function setupHyperteleClient (seed, bootstrap, t, { isPrivate = false } =
125125
return clientPort
126126
}
127127

128-
async function request (port, { msTimeout = 500 } = {}) {
128+
async function request (port, { msTimeout = 5000 } = {}) {
129129
const link = `http://127.0.0.1:${port}`
130130

131131
return new Promise((resolve, reject) => {

0 commit comments

Comments
 (0)