gbserver/gb-testing/tests/chaos_kubernetes_test.rs

13 lines
269 B
Rust
Raw Normal View History

2024-12-22 20:56:52 -03:00
use gb_testing::chaos::ChaosTest;
#[tokio::test]
async fn test_kubernetes_chaos() -> anyhow::Result<()> {
let chaos_test = ChaosTest::new().await?;
2024-12-22 20:56:52 -03:00
2024-12-22 20:56:52 -03:00
chaos_test.network_partition().await?;
chaos_test.resource_exhaustion().await?;
Ok(())
}