mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-22 16:56:39 -06:00
Fix lowest email port
This commit is contained in:
parent
c0b5a5eb4b
commit
9ba1faa2ee
@ -12,7 +12,7 @@ class MockSmtpServer {
|
||||
|
||||
collectEmails (emailsCollection: object[]) {
|
||||
return new Promise<number>((res, rej) => {
|
||||
const port = parallelTests() ? randomInt(1000, 2000) : 1025
|
||||
const port = parallelTests() ? randomInt(1025, 2000) : 1025
|
||||
this.emails = emailsCollection
|
||||
|
||||
if (this.started) {
|
||||
|
Loading…
Reference in New Issue
Block a user