This commit is contained in:
2025-05-23 21:20:39 +00:00
parent 9629329bc2
commit 0907949f8a
86 changed files with 654 additions and 569 deletions

View File

@ -66,7 +66,7 @@ tap.test('Empty Commands - should reject empty line (just CRLF)', async (tools)
} else {
// Server might ignore empty lines
console.log('Server ignored empty line');
expect(true).toBeTrue();
expect(true).toEqual(true);
}
// Test server is still responsive
@ -425,7 +425,7 @@ tap.test('Empty Commands - server should remain stable after empty commands', as
tap.test('cleanup - stop SMTP server', async () => {
await stopTestServer(testServer);
expect(true).toBeTrue();
expect(true).toEqual(true);
});
tap.start();