testdriverai 7.8.0-test.9 → 7.8.0
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/docs/changelog.mdx +26 -0
- package/lib/core/Dashcam.js +2 -9
- package/package.json +1 -1
package/docs/changelog.mdx
CHANGED
|
@@ -5,6 +5,32 @@ rss: true
|
|
|
5
5
|
icon: "code-compare"
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
<Update label="v7.8.0-test.22" description="March 2026" tags={["test"]}>
|
|
9
|
+
|
|
10
|
+
Releases test.11 through test.22 include version bumps and internal CI improvements across all packages. No new user-facing changes — see [v7.8.0-test.10](#v780-test10) for the latest updates in this release stream.
|
|
11
|
+
|
|
12
|
+
</Update>
|
|
13
|
+
|
|
14
|
+
<Update label="v7.8.0-test.10" description="March 2026" tags={["test"]}>
|
|
15
|
+
|
|
16
|
+
🔧 Improvements
|
|
17
|
+
|
|
18
|
+
- **Parallel test concurrency** — Concurrency limits are now enforced with atomic slot tracking, eliminating a race condition where multiple tests launching at the same time could all bypass the limit. If you hit your concurrency cap, the SDK waits and retries automatically.
|
|
19
|
+
- **Dashboard access for all plans** — Test recordings and metrics on the [dashboard](https://console.testdriver.ai) are now visible to all users, including those on the Free plan.
|
|
20
|
+
- **Sandbox message throttling** — High-frequency interactions no longer risk hitting connection limits. The SDK automatically paces outgoing messages during fast command sequences.
|
|
21
|
+
- **Windows Dashcam stability** — Web log tracking on Windows sandboxes now handles errors gracefully instead of failing the test.
|
|
22
|
+
|
|
23
|
+
</Update>
|
|
24
|
+
|
|
25
|
+
<Update label="v7.8.0-test.9" description="March 2026" tags={["test"]}>
|
|
26
|
+
|
|
27
|
+
🔧 Improvements
|
|
28
|
+
|
|
29
|
+
- **Stable release promotion** — Fixed an issue where promoting a test or canary release to stable could be incorrectly skipped. Stable releases now proceed reliably regardless of the prior pre-release channel.
|
|
30
|
+
- **Example docs sync** — Example documentation now updates more reliably, continuing even when individual example tests fail so that passing examples still get refreshed.
|
|
31
|
+
|
|
32
|
+
</Update>
|
|
33
|
+
|
|
8
34
|
<Update label="v7.8.0-test.8" description="March 2026" tags={["test"]}>
|
|
9
35
|
|
|
10
36
|
🔧 Improvements
|
package/lib/core/Dashcam.js
CHANGED
|
@@ -147,20 +147,13 @@ class Dashcam {
|
|
|
147
147
|
* @private
|
|
148
148
|
*/
|
|
149
149
|
async _getDashcamPath() {
|
|
150
|
-
const shell = this._getShell();
|
|
151
150
|
|
|
152
151
|
if (this.client.os === "windows") {
|
|
153
152
|
return "C:\\Program Files\\nodejs\\dashcam.cmd";
|
|
153
|
+
} else {
|
|
154
|
+
return "/usr/bin/dashcam";
|
|
154
155
|
}
|
|
155
156
|
|
|
156
|
-
const npmPrefix = await this.client.exec(
|
|
157
|
-
shell,
|
|
158
|
-
"npm prefix -g",
|
|
159
|
-
40000,
|
|
160
|
-
process.env.TD_DEBUG == "true" ? false : true,
|
|
161
|
-
);
|
|
162
|
-
|
|
163
|
-
return npmPrefix.trim() + "/bin/dashcam";
|
|
164
157
|
}
|
|
165
158
|
|
|
166
159
|
/**
|