Commitd8ef5efunknown_key
feat(nav): expose AI Tests in the repo nav
feat(nav): expose AI Tests in the repo nav The AI test-stub generator (D8 / src/routes/ai-tests.tsx) has been on disk for a while at /:owner/:repo/ai/tests but no link surfaced in the repo nav — discoverable only by typing the URL. This adds a "Tests" link in the AI cluster (Explain | Ask AI | Spec | Tests) alongside the existing AI surfaces. src/views/components.tsx RepoNav gains one new <a> entry pointing at /:owner/:repo/ai/tests with the same purple highlight + sparkle glyph the other AI links use. Tests: existing layout + nav suites still pass. Total suite 1156 / 8 skip / 0 fail (unchanged). https://claude.ai/code/session_0163vJChUuZqqtBBznUW6xBU
1 file changed+7−0d8ef5eff7ff00dc0bfd2878470ecc8d2c3a3a36a
1 changed file+7−0
Modifiedsrc/views/components.tsx+7−0View fileUnifiedSplit
@@ -181,6 +181,13 @@ export const RepoNav: FC<{
181181 >
182182 {"\u2728"} Spec
183183 </a>
184 <a
185 href={`/${owner}/${repo}/ai/tests`}
186 style="color: #bc8cff"
187 title="AI Tests \u2014 generate failing test stubs from a source file"
188 >
189 {"\u2728"} Tests
190 </a>
184191 </div>
185192);
186193
187194