testdriverai 7.3.23 → 7.3.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [7.3.25](https://github.com/testdriverai/testdriverai/compare/v7.3.24...v7.3.25) (2026-02-20)
2
+
3
+
4
+
5
+ ## [7.3.24](https://github.com/testdriverai/testdriverai/compare/v7.3.23...v7.3.24) (2026-02-20)
6
+
7
+
8
+
1
9
  ## [7.3.23](https://github.com/testdriverai/testdriverai/compare/v7.3.22...v7.3.23) (2026-02-20)
2
10
 
3
11
 
@@ -1301,11 +1301,16 @@ function calculateStatsFromModules(testModules) {
1301
1301
 
1302
1302
  for (const testModule of testModules) {
1303
1303
  for (const testCase of testModule.children.allTests()) {
1304
- totalTests++;
1305
1304
  const result = testCase.result();
1306
- if (result.state === "passed") passedTests++;
1307
- else if (result.state === "failed") failedTests++;
1308
- else if (result.state === "skipped") skippedTests++;
1305
+ if (result.state === "passed") {
1306
+ passedTests++;
1307
+ totalTests++;
1308
+ } else if (result.state === "failed") {
1309
+ failedTests++;
1310
+ totalTests++;
1311
+ } else if (result.state === "skipped") {
1312
+ skippedTests++;
1313
+ }
1309
1314
  }
1310
1315
  }
1311
1316
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.3.23",
3
+ "version": "7.3.25",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",