Skip to content

Commit 605dc02

Browse files
author
Nitish [C] Dhok
committed
kiro-cli e2e tests: skipping input-method tests for linux env
1 parent 998f80e commit 605dc02

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

e2etests/tests/setup_subcommands/test_kiro_cli_setup_subcommand.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ fn test_kiro_cli_setup_dotfiles_subommand() -> Result<(), Box<dyn std::error::Er
6363
fn test_kiro_cli_setup_input_method_subommand() -> Result<(), Box<dyn std::error::Error>> {
6464
println!("\n🔍 Testing kiro-cli setup --input-method ... | Description: Tests the <code> kiro-cli setup --input-method </code> subcommand to verify input method setup.");
6565

66+
// Skip test on Linux only
67+
if cfg!(target_os = "linux") {
68+
println!("⚠️ Skipping test - running on Linux");
69+
return Ok(());
70+
}
71+
6672
// Run inside chat session which has PTY for interactive prompts
6773
let session = q_chat_helper::get_chat_session();
6874
let mut chat = session.lock().unwrap_or_else(|poisoned| poisoned.into_inner());

0 commit comments

Comments
 (0)