test: use less common port numbers

This commit is contained in:
Zack Schuster 2022-03-03 15:44:35 -08:00
parent 6d48c82aaf
commit d184a82bfe
2 changed files with 3 additions and 3 deletions

View File

@ -13,8 +13,8 @@ import {
} from '../email';
const parseMap = new Map<string, ParsedMail>();
const port = 3000;
let greylistPort = 4000;
const port = 3333;
let greylistPort = 4444;
const client = new SMTPClient({
port,

View File

@ -21,7 +21,7 @@ if (__dirname == null) {
*/
type ParsedMailCompat = Omit<ParsedMail, 'to'> & { to?: AddressObject };
const port = 5000;
const port = 5555;
const parseMap = new Map<string, ParsedMailCompat>();
const client = new SMTPClient({