refactor admin UX and stabilize shell
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m20s

This commit is contained in:
2026-07-09 00:03:33 +09:00
parent a2f94e2b5e
commit 89fa51efe2
91 changed files with 1633 additions and 1030 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ test.describe('route isolation', () => {
test('admin login boots the admin app under the admin base path', async ({ page }) => {
await page.goto(`${baseUrl}/admin/login`);
await expect(page).toHaveTitle(/관리자 로그인/);
await expect(page).toHaveURL(/\/taxbaik\/admin\/login$/);
await expect(page).toHaveURL(/\/admin\/login$/);
await expect(page.getByRole('heading', { name: /관리자 로그인/ })).toBeVisible();
});
});