fix(用户管理): 修复用户列表页面加载失败问题
修复用户列表页面加载失败导致测试超时的问题,确保页面元素正确渲染
This commit is contained in:
32
integration-tests/lib.rs
Normal file
32
integration-tests/lib.rs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user