refactor/project-refactor #4

Merged
zhangxiang merged 15 commits from refactor/project-refactor into dev 2026-04-12 17:38:31 +08:00
Showing only changes of commit 37556a879e - Show all commits
+2 -1
View File
@@ -32,7 +32,8 @@ test.describe('用户管理测试 @feature @admin', () => {
await userPage.createUser(userData); await userPage.createUser(userData);
await userPage.expectUserInList(userData.email); await userPage.expectUserInList(userData.email);
} finally { } finally {
// TODO: 添加删除用户的逻辑 // 测试结束后清理创建的测试用户
// 注意:当前版本暂未实现用户删除功能,后续版本将添加
} }
}); });