From db7192ce206f76ac03886bf6a240f67055e6e134 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Sat, 23 Mar 2024 22:18:57 -0700 Subject: [PATCH] test: add spectator tests to `th2` --- riven/tests/tests_th2.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/riven/tests/tests_th2.rs b/riven/tests/tests_th2.rs index c65823a..71080ba 100644 --- a/riven/tests/tests_th2.rs +++ b/riven/tests/tests_th2.rs @@ -11,3 +11,13 @@ async fn status() -> Result<(), String> { let _ = status; Ok(()) } + +#[riven_test] +async fn spectator_v5_combo_test() -> Result<(), String> { + spectator_v5_combo(ROUTE).await +} + +#[riven_test] +async fn spectator_tft_v5_combo_test() -> Result<(), String> { + spectator_tft_v5_combo(ROUTE).await +}