chore: 删除e2e测试相关的初始化文件和快照文件

清理不再需要的测试初始化文件和视觉回归测试的快照文件,以保持代码库整洁
This commit is contained in:
张翔
2026-03-27 09:56:57 +08:00
parent f76137b8b0
commit 7a38eae6e0
421 changed files with 673 additions and 34387 deletions
-37
View File
@@ -1,37 +0,0 @@
export default function SimpleLoginPage() {
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50">
<div className="bg-white p-8 rounded-lg shadow-md">
<h1 className="text-2xl font-bold mb-4"></h1>
<form className="space-y-4">
<div>
<label htmlFor="email" className="block text-sm font-medium mb-1"></label>
<input
id="email"
type="email"
name="email"
className="w-full px-3 py-2 border rounded-md"
placeholder="admin@novalon.cn"
/>
</div>
<div>
<label htmlFor="password" className="block text-sm font-medium mb-1"></label>
<input
id="password"
type="password"
name="password"
className="w-full px-3 py-2 border rounded-md"
placeholder="admin123456"
/>
</div>
<button
type="submit"
className="w-full bg-[#C41E3A] text-white py-2 rounded-md hover:bg-[#A01828]"
>
</button>
</form>
</div>
</div>
);
}
-10
View File
@@ -1,10 +0,0 @@
export default function SimpleAdminPage() {
return (
<div className="min-h-screen flex items-center justify-center">
<div className="text-center">
<h1 className="text-2xl font-bold">Simple Admin Page</h1>
<p className="mt-4">admin页面</p>
</div>
</div>
);
}
-10
View File
@@ -1,10 +0,0 @@
export default function AdminTestPage() {
return (
<div className="min-h-screen flex items-center justify-center">
<div className="text-center">
<h1 className="text-2xl font-bold">Admin Test Page</h1>
<p className="mt-4">admin路由是工作的</p>
</div>
</div>
);
}