hurl/bin/test/test_unit.ps1
2023-03-03 17:54:20 +01:00

9 lines
228 B
PowerShell

Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
powershell write-host -foregroundcolor Cyan "----- unit tests -----"
# run test units
cargo test --release --features strict --tests
if ($LASTEXITCODE) { Throw }