Skip to content

Commit 6842904

Browse files
jammy0903claude
andcommitted
fix: update FORBIDDEN_PATTERNS count in test (28 → 32)
Pattern count increased after sandbox escape security fix but test was not updated. All 75 tests now pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5829740 commit 6842904

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

ROADMAP.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
- `WeekdayChart.tsx` (import 0개)
2020
- `stories/` 폴더 전체 (Storybook 미사용, 27파일 849줄)
2121
- [x] `.env.example` 최신화 (Firebase Client 변수, CORS 추가) — 2026-02-27
22-
- [ ] 로컬 실행 테스트 (새 클론 기준으로 Getting Started 검증)
22+
- [x] 로컬 실행 테스트 — 2026-02-27
23+
- pnpm install ✅ / shared build ✅ / backend build ✅ / frontend build ✅
24+
- 75/75 테스트 통과 (FORBIDDEN_PATTERNS 카운트 수정)
2325

2426
### 법적 준비
2527
- [x] LICENSE 파일 확인 (MIT) — 2026-02-27

packages/backend/src/modules/simulators/c/executor/executor.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ describe('FORBIDDEN_PATTERNS', () => {
123123
describe('패턴 커버리지', () => {
124124
it('FORBIDDEN_PATTERNS 개수 확인', () => {
125125
// 패턴 추가/삭제 시 이 테스트가 실패하면 위 테스트도 업데이트 필요
126-
expect(FORBIDDEN_PATTERNS.length).toBe(28);
126+
expect(FORBIDDEN_PATTERNS.length).toBe(32);
127127
});
128128
});

0 commit comments

Comments
 (0)