update
This commit is contained in:
@ -220,7 +220,7 @@ tap.test('Plain Connection - should handle multiple plain connections', async (t
|
||||
console.log(`Connection ${i + 1} established`);
|
||||
}
|
||||
|
||||
expect(connections.length).toBe(connectionCount);
|
||||
expect(connections.length).toEqual(connectionCount);
|
||||
console.log(`All ${connectionCount} plain connections established successfully`);
|
||||
|
||||
// Clean up all connections
|
||||
|
@ -327,7 +327,7 @@ tap.test('REL-01: Long-running operation - Server stability check', async (tools
|
||||
console.log(`Max response time: ${maxResponseTime}ms`);
|
||||
|
||||
// All checks should succeed for stable server
|
||||
expect(successfulChecks).toBe(stabilityChecks.length);
|
||||
expect(successfulChecks).toEqual(stabilityChecks.length);
|
||||
expect(avgResponseTime).toBeLessThan(1000);
|
||||
done.resolve();
|
||||
} catch (error) {
|
||||
|
Reference in New Issue
Block a user