1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Try to fix mock server ports

This commit is contained in:
Chocobozzz 2021-10-12 13:30:41 +02:00
parent 221d876fa7
commit 3c25d37aef
No known key found for this signature in database
GPG key ID: 583A612D890159BE
5 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@ export class MockInstancesIndex {
})
})
const port = 42101 + randomInt(1, 100)
const port = 42000 + randomInt(1, 1000)
app.listen(port, () => res(port))
})
}