Phase 2 중간점검: P2-01~06 완료, 전체 38개 테스트 통과

- jobs.md: P2-01~06 상태를 완료로 변경, 작업 로그 추가
- admin.spec.js: strict mode 수정 (.first() 추가)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
javamon1174
2026-03-25 16:50:03 +09:00
parent acc9e4741e
commit b453b970d4
2 changed files with 11 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ test.describe('관리자 패널 — 지자체관리자', () => {
test('회원 관리 목록 접근', async ({ page }) => {
await page.goto('/admin/users');
await expect(page).toHaveURL(/\/admin\/users/);
await expect(page.locator('td:has-text("tester_")')).toBeVisible({ timeout: 10000 });
await expect(page.locator('td:has-text("tester_")').first()).toBeVisible({ timeout: 10000 });
});
test('로그인 이력 접근', async ({ page }) => {