fix(用户管理): 修复用户列表页面加载失败问题
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled

修复用户列表页面加载失败导致测试超时的问题,确保页面元素正确渲染
This commit is contained in:
iven
2026-04-19 08:46:28 +08:00
parent 0ee9d22634
commit 841766b168
174 changed files with 26366 additions and 675 deletions

32
integration-tests/lib.rs Normal file
View File

@@ -0,0 +1,32 @@
#![allow(unused)]
#![allow(dead_code)]
mod test_auth_module;
mod test_config_module;
mod test_message_module;
mod test_plugin_module;
mod test_report;
mod test_workflow_module;
mod test_common;
use test_report::{TestReport, TestSuite, TestCase};
pub use test_auth_module::run_auth_tests;
pub use test_config_module::run_config_tests;
pub use test_message_module::run_message_tests;
pub use test_plugin_module::run_plugin_tests;
pub use test_workflow_module::run_workflow_tests;
pub fn run_all_tests() -> TestReport {
let mut report = TestReport::new("ERP Platform Full Integration Test Report".to_string());
let start = std::time::Instant::now();
report.add_suite(run_auth_tests());
report.add_suite(run_config_tests());
report.add_suite(run_message_tests());
report.add_suite(run_workflow_tests());
report.add_suite(run_plugin_tests());
report.elapsed_ms = start.elapsed().as_millis() as u64;
report
}