This commit is contained in:
2025-05-24 00:23:35 +00:00
parent 0907949f8a
commit cb52446f65
76 changed files with 1401 additions and 867 deletions

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@git.zone/tapbundle';
import { tap, expect } from '@git.zone/tstest/tapbundle';
import * as net from 'net';
import { startTestServer, stopTestServer } from '../../helpers/server.loader.js';
import type { ITestServer } from '../../helpers/server.loader.js';
@ -13,7 +13,7 @@ tap.test('setup - start SMTP server for permanent failure tests', async () => {
port: TEST_PORT,
hostname: 'localhost'
});
expect(testServer).toBeInstanceOf(Object);
expect(testServer).toBeDefined();
});
tap.test('Permanent Failures - should return 5xx for invalid recipient syntax', async (tools) => {