Start fixing tests

This commit is contained in:
Andras Schmelczer 2026-01-24 11:00:55 +00:00
commit 7fcd0f0bfa
19 changed files with 209 additions and 217 deletions

View file

@ -80,10 +80,10 @@ async function main(): Promise<void> {
if (!result.success) {
allPassed = false;
logger.error(`\n✗ FAILED: ${test.name}`);
logger.error(`✗ FAILED: ${test.name}`);
logger.error(`Error: ${result.error}`);
} else {
logger.info(`\n✓ PASSED: ${test.name} (${result.duration}ms)`);
logger.info(`✓ PASSED: ${test.name} (${result.duration}ms)`);
}
}
} finally {