Created
January 27, 2026 20:06
-
-
Save ianjennings/c17e23794fa133a1e935a687c07c4586 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const startAppScript = fs.readFileSync(path.join(__dirname, "scripts/start.ps1"), "utf-8"); | |
| const installScriptWithParams = ` | |
| $DownloadedFile = "${installerPath.replace(/\\/g, '\\\\')}" | |
| $InstallerFile = "${installerFile}" | |
| ${installScript} | |
| `; | |
| await testdriver.exec('pwsh', installScriptWithParams, 300000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment