hurl/integration/tests_ok/tap.ps1

9 lines
337 B
PowerShell
Raw Normal View History

2023-07-06 14:49:47 +03:00
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
if (Test-Path build/result.tap) {
Remove-Item build/result.tap
}
hurl --test --report-tap build/result.tap tests_ok/test.1.hurl tests_ok/test.2.hurl
hurl --test --report-tap build/result.tap tests_ok/test.3.hurl
Write-Host (Get-Content build/result.tap -Raw) -NoNewLine