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 +8 -0
- package/interfaces/vitest-plugin.mjs +9 -4
- package/package.json +1 -1
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")
|
|
1307
|
-
|
|
1308
|
-
|
|
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
|
|