08ea5fbe98
添加用户管理视图、API和状态管理文件
15 lines
247 B
Bash
Executable File
15 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "🧹 清理测试环境..."
|
|
|
|
# 清理测试报告
|
|
rm -rf test-results/
|
|
rm -rf playwright-report/
|
|
|
|
# 清理测试截图
|
|
rm -rf screenshots/
|
|
|
|
# 清理测试视频
|
|
rm -rf test-results/videos/
|
|
|
|
echo "✅ 测试环境清理完成!" |