1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-08 09:05:34 +00:00
testscript-rs/testdata/network_conditions.txt
copilot-swe-agent[bot] 26a39e2384 Implement network and advanced condition support
Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com>
2025-09-27 01:56:58 +00:00

11 lines
No EOL
370 B
Text

# Test network condition support
# This command will only run if network is available
[net] exec echo "Network is available"
# This command will only run if network is not available
[!net] exec echo "Network is not available"
# At least one of the above should execute, so we should see some output
exec echo "Network test completed"
stdout "Network test completed"