mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
11 lines
428 B
PowerShell
11 lines
428 B
PowerShell
|
$Source = [IO.File]::ReadAllText("$PSScriptRoot\DenoWinRunner.cs")
|
||
|
$denoExePath = $args[0]
|
||
|
$scriptPath = $args[1]
|
||
|
$constraints = $args[2]
|
||
|
$timeout = 5000;
|
||
|
Add-Type -TypeDefinition $Source -Language CSharp
|
||
|
Write-Output("Running Deno script: " + $args[1])
|
||
|
$code = [DenoWinRunner]::RunDenoScript($denoExePath, $scriptPath, $constraints, $timeout)
|
||
|
Write-Output("Deno.exe or the test wrapper has exited with code: $code")
|
||
|
exit $code
|