feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { execSync } from 'child_process';
|
||||
|
||||
console.log('=== 开始执行全量测试 ===\n');
|
||||
|
||||
try {
|
||||
execSync('npm run test:e2e', {
|
||||
stdio: 'inherit',
|
||||
});
|
||||
|
||||
console.log('\n✅ 全量测试执行完成');
|
||||
} catch (error) {
|
||||
console.error('\n❌ 全量测试执行失败');
|
||||
process.exit(1);
|
||||
}
|
||||
Reference in New Issue
Block a user