hurl/bin/test/test_unit.ps1
2023-04-09 14:03:14 +02:00

9 lines
217 B
PowerShell

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