fix: Frontend CI 'No tests found' 해결 — 랜딩 스모크 E2E 추가#31
Merged
Conversation
playwright testDir(tests/e2e)가 비어 있어 npx playwright test가 exit 1 → 모든 Frontend CI가 red였다. 공개 랜딩 페이지(/)에 대한 백엔드 불필요 스모크 테스트 3건을 추가해 최소 1건 이상의 E2E가 존재하도록 한다. playwright 산출물 디렉토리도 gitignore 처리. Closes #30 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 16, 2026
trz-21
added a commit
that referenced
this pull request
Jun 16, 2026
Wiki 동기화가 반복 누락된 구조적 원인 2가지를 수정한다.
1. 타이밍: git diff(워킹트리)만 보던 것을 merge-base main...HEAD
커밋 diff와 합집합으로 확장. 피처 브랜치에서 커밋 후에도 Stop 시
리마인드가 유지된다(기존엔 커밋되면 diff가 비어 침묵).
2. 범위: frontend/src/features 만 매칭하던 패턴에
frontend/{app,src/shared} → Frontend, frontend/tests·backend/tests·
.github/workflows → Harness 추가. #31(tests/e2e)이 탐지 안 되던 문제 해소.
Closes #32
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
문제
Frontend CI의 E2E tests 단계(
npx playwright test)가Error: No tests found로 exit 1 → #20~#29 포함 모든 빌드가 red.원인:
playwright.config.ts의testDir: './tests/e2e'가 가리키는 디렉토리가 비어 있어 Playwright가 테스트 0건을 실패로 처리.변경
frontend/tests/e2e/landing.spec.ts추가 — 공개 랜딩 페이지(/) 스모크 테스트 3건/register라우팅frontend/.gitignore— Playwright 산출물(test-results/등) 무시검증 (로컬)
npx tsc --noEmit✓npm run lint✓ (No ESLint warnings or errors)npx vitest run✓ (76 passed)npx playwright test✓ (3 passed)Closes #30