hurl/bin/test/test_unit.ps1

9 lines
217 B
PowerShell
Raw Normal View History

2022-12-28 12:20:27 +03:00
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
2023-04-05 12:07:50 +03:00
write-host -foregroundcolor Cyan "----- unit tests -----"
# run test units
cargo test --release --features strict --tests
2022-12-28 12:20:27 +03:00
if ($LASTEXITCODE) { Throw }