hurl/bin/test/test_unit.ps1

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 }