You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
println!("\n🔍 Testing kiro-cli translate subcommand... | Description: Tests the <code> kiro-cli translate </code> subcommand for Natural Language to Shell translation");
println!("\n🔍 Executing 'kiro-cli translate' subcommand with input 'hello'...");
10
13
11
14
// Use stdin function for translate subcommand
12
15
println!("\n🔍 Testing kiro-cli translate subcommand to create and delete a project directory...");
13
-
let response = q_chat_helper::execute_q_subcommand_with_stdin("kiro-cli",&["translate"],Some("Create a project directory named demoproject."))?;
16
+
let response = q_chat_helper::execute_q_subcommand_with_stdin("kiro-cli",&["translate"],Some("print the create a file with name testkirocli in current working directory."))?;
println!("\n🔍 Testing kiro-cli translate subcommand to delete the project directory...");
26
-
let response = q_chat_helper::execute_q_subcommand_with_stdin("kiro-cli",&["translate"],Some("Delete the demoproject directory."))?;
31
+
// now I want to delete the demoproject directory
32
+
println!("\n🔍 Testing kiro-cli translate subcommand to delete created testkiro file...");
33
+
let response = q_chat_helper::execute_q_subcommand_with_stdin("kiro-cli",&["translate"],Some("print the delete file testkirocli in curent working directory."))?;
0 commit comments