chore: add more granular e2e

This commit is contained in:
Ralph Khreish
2025-07-08 10:57:06 +03:00
parent 3ec482fa4a
commit 890fc6cc5c
10 changed files with 4443 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ export class TestLogger {
}
addCost(cost) {
if (typeof cost === 'number' && !isNaN(cost)) {
if (typeof cost === 'number' && !Number.isNaN(cost)) {
this.totalCost += cost;
}
}