testdriverai 5.7.8 → 5.7.9
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.
|
@@ -49,7 +49,7 @@ jobs:
|
|
|
49
49
|
- uses: testdriverai/action@main
|
|
50
50
|
with:
|
|
51
51
|
os: ${{ contains(matrix.os, 'windows') && 'windows' || 'linux' }}
|
|
52
|
-
version: "
|
|
52
|
+
version: "alpha"
|
|
53
53
|
prerun: |
|
|
54
54
|
exit
|
|
55
55
|
key: ${{ secrets.TESTDRIVER_API_KEY }}
|
|
@@ -58,4 +58,5 @@ jobs:
|
|
|
58
58
|
env:
|
|
59
59
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
60
60
|
FORCE_COLOR: "3"
|
|
61
|
+
TD_WEBSITE: "https://testdriver-sandbox.vercel.app"
|
|
61
62
|
WEBSITE_URL: "example.com"
|
package/lib/commands.js
CHANGED
|
@@ -494,7 +494,7 @@ let commands = {
|
|
|
494
494
|
),
|
|
495
495
|
true,
|
|
496
496
|
);
|
|
497
|
-
|
|
497
|
+
|
|
498
498
|
modsToPress.forEach((key) => {
|
|
499
499
|
robot.keyToggle(key, "down");
|
|
500
500
|
})
|
|
@@ -803,7 +803,7 @@ let commands = {
|
|
|
803
803
|
chalk.dim(`running value of \`${plat}\` on this machine...`),
|
|
804
804
|
true,
|
|
805
805
|
);
|
|
806
|
-
result = await exec(windows_code, { cwd: cwd() });
|
|
806
|
+
result = await exec(windows_code, { cwd: cwd(), shell: "powershell.exe" });
|
|
807
807
|
} else if (plat == "mac") {
|
|
808
808
|
logger.info(
|
|
809
809
|
chalk.dim(`running value of \`${plat}\` on this machine...`),
|
package/package.json
CHANGED
package/testdriver/remember.yaml
CHANGED