Skip to content

Commit 5f3e986

Browse files
committed
Created folder structure for e2e test
1 parent c1c6756 commit 5f3e986

28 files changed

+29
-12
lines changed

e2etests/Cargo.toml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,3 @@ hooks=[]
2626
usage=[]
2727
editor=[]
2828
subscribe=[]
29-
30-
[[test]]
31-
name = "test_help_command"
32-
path = "tests/test_help_command.rs"
33-
34-
[[test]]
35-
name = "test_tools_command"
36-
path = "tests/test_tools_command.rs"
37-
38-
[[test]]
39-
name = "test_ai_prompt"
40-
path = "tests/test_ai_prompt.rs"

e2etests/tests/agent/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Module declaration for agent tests
2+
pub mod test_agent_commands;
File renamed without changes.

e2etests/tests/ai_prompts/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pub mod test_ai_prompt;
2+
pub mod test_prompts_commands;
File renamed without changes.
File renamed without changes.

e2etests/tests/all_tests.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Main integration test file that includes all subdirectory tests
2+
mod agent;
3+
mod ai_prompts;
4+
mod context;
5+
mod core_session;
6+
mod integration;
7+
mod mcp;
8+
mod model;
9+
mod save_load;
10+
mod session_mgmt;

e2etests/tests/context/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod test_context_command;
File renamed without changes.

e2etests/tests/core_session/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pub mod test_clear_command;
2+
pub mod test_help_command;
3+
pub mod test_quit_command;
4+
pub mod test_tools_command;

0 commit comments

Comments
 (0)