The integration tests in crates/terraphim_agent/tests/integration_tests.rs fail because they use role names not in the embedded config:
test_end_to_end_offline_workflow (line 209): uses "Rust Engineer" but embedded config only has "Terraphim Engineer"
test_role_consistency_across_commands (line 527): uses "Rust Engineer" - not in embedded config
test_full_feature_matrix (line 692): uses "Default" - not in embedded config
Fix: Change role names to match what's available in the embedded config.
These tests were hidden because ci-main.yml was previously failing at the zlob panic before the test suite could run.
The integration tests in
crates/terraphim_agent/tests/integration_tests.rsfail because they use role names not in the embedded config:test_end_to_end_offline_workflow(line 209): uses"Rust Engineer"but embedded config only has"Terraphim Engineer"test_role_consistency_across_commands(line 527): uses"Rust Engineer"- not in embedded configtest_full_feature_matrix(line 692): uses"Default"- not in embedded configFix: Change role names to match what's available in the embedded config.
These tests were hidden because
ci-main.ymlwas previously failing at the zlob panic before the test suite could run.