Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/ci-functional.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ Invoke-TestCase -Name 'Execute full command matrix' -Code {
Invoke-CommandProbe -Command 'env' -Code { env 'PATH' | Out-Null }
Invoke-CommandProbe -Command 'svc' -Code { svc -Count 1 | Out-Null }
Invoke-CommandProbe -Command 'eventlog' -Code { eventlog 1 | Out-Null }
Invoke-CommandProbe -Command 'weather' -Code { weather 'Oslo' | Out-Null }
Invoke-CommandProbe -Command 'weather' -Code { weather 'London' | Out-Null }
Invoke-CommandProbe -Command 'speedtest' -SkipReason 'Long-running network benchmark'
Invoke-CommandProbe -Command 'wifipass' -SkipReason 'Requires WLAN profile context and often elevation'
Invoke-CommandProbe -Command 'hosts' -SkipReason 'Opens elevated editor UI'
Expand Down
2 changes: 1 addition & 1 deletion tests/rawhunt.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ T 'tlscert' { tlscert "google.com" }
T 'portscan' { portscan "localhost" -Ports @(80, 443, 3389) }
T 'ipinfo' { ipinfo "8.8.8.8" }
T 'whois' { whois "google.com" }
T 'weather' { weather "Oslo" }
T 'weather' { weather "London" }
T 'http GET' { $r = http "https://httpbin.org/get"; if (-not $r) { throw "no response" } }
T 'http POST' { $r = http "https://httpbin.org/post" -Method POST -Body '{"test":true}'; if (-not $r) { throw "no response" } }
T 'hb' { hb $tf -Confirm:$false } # LIVE NETWORK: real upload to bin.christitus.com (rawhunt exercises real I/O by design)
Expand Down
2 changes: 1 addition & 1 deletion tests/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ T 'nslook' { nslook "google.com" }
T 'env' { env "PATH" }
T 'svc' { svc "idle" -Count 1 }
T 'eventlog' { eventlog 1 }
T 'weather' { weather "Oslo" }
T 'weather' { weather "London" }
T 'speedtest' $null 'takes 30s+ download'
T 'wifipass' $null 'requires admin/netsh'
T 'hosts' $null 'opens elevated editor'
Expand Down
Loading