This commit is contained in:
2025-05-24 01:00:30 +00:00
parent cb52446f65
commit f2e9ff0a51
38 changed files with 223 additions and 175 deletions

View File

@ -18,7 +18,7 @@ tap.test('setup - start SMTP server', async () => {
hostname: 'localhost'
});
expect(testServer).toBeTypeofObject();
expect(testServer).toBeDefined();
expect(testServer.port).toEqual(TEST_PORT);
});

View File

@ -18,7 +18,7 @@ tap.test('setup - start SMTP server', async () => {
hostname: 'localhost'
});
expect(testServer).toBeTypeofObject();
expect(testServer).toBeDefined();
expect(testServer.port).toEqual(TEST_PORT);
});