feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { FullConfig } from '@playwright/test';
|
||||
|
||||
async function globalTeardown(config: FullConfig) {
|
||||
console.log('🧹 E2E测试全局清理开始...');
|
||||
|
||||
const mockEnabled = process.env.E2E_MOCK_ENABLED === 'true';
|
||||
|
||||
if (mockEnabled) {
|
||||
console.log('✅ Mock数据已清理');
|
||||
}
|
||||
|
||||
console.log('✅ E2E测试全局清理完成');
|
||||
}
|
||||
|
||||
export default globalTeardown;
|
||||
Reference in New Issue
Block a user