Try to fix mock server ports

pull/4626/head
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))
})
}

View File

@ -22,7 +22,7 @@ export class MockJoinPeerTubeVersions {
})
})
const port = 42201 + randomInt(1, 100)
const port = 43000 + randomInt(1, 1000)
app.listen(port, () => res(port))
})
}

View File

@ -32,7 +32,7 @@ export class MockObjectStorage {
)
})
const port = 42301 + randomInt(1, 100)
const port = 44000 + randomInt(1, 1000)
this.server = app.listen(port, () => res(port))
})
}

View File

@ -23,7 +23,7 @@ export class MockBlocklist {
return res.json(this.body)
})
const port = 42201 + randomInt(1, 100)
const port = 45000 + randomInt(1, 1000)
this.server = app.listen(port, () => res(port))
})
}

View File

@ -9,7 +9,7 @@ class MockProxy {
initialize () {
return new Promise<number>(res => {
const port = 42501 + randomInt(1, 100)
const port = 46000 + randomInt(1, 1000)
this.server = proxy(createServer())
this.server.listen(port, () => res(port))