# Test network condition support

[env:CI] skip Skipping this test on GitHub Actions

# 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"
