# Deferred Items — Phase 10 ## Pre-existing test failures (out of scope for 10-01) **Discovered during:** Plan 10-01, Task 2 verification **Files involved:** `src/schemas/registry.ts` (uncommitted working tree changes) + `src/components/wizard/RemoteConfigStep.test.tsx` (working tree) **Status:** NOT caused by plan 10-01 changes **Details:** 8 RemoteConfigStep tests fail when the uncommitted `registry.ts` changes (tooltip texts added for GCS and B2 fields from a previous session) are combined with the current `RemoteConfigStep.test.tsx`. The tests time out waiting for GCS/B2 fields (`getByLabelText(/project number/i)`) and S3/GCS validation labels. These changes were in the working tree before plan 10-01 execution began and are unrelated to the intro section or step description work. **Failing tests:** - `renders Project Number field` - `renders Service Account JSON field` - `renders Application Key ID field` - `renders Application Key field` - `accepts valid S3 region (no format error)` - `rejects GCS project_number with non-digits` - `accepts valid GCS project_number (no format error)` - `rejects S3 region with invalid format (spaces)` (intermittent) **Recommended fix:** Commit or revert the uncommitted `registry.ts` changes and align `RemoteConfigStep.test.tsx` selectors with the updated tooltip rendering (likely a `{ selector: 'input' }` issue).