feat(reader): immersive series-read route + route-aware AppShell (suppress TopNav)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-17 16:29:21 -04:00
parent 129af2e594
commit f52c31367a
3 changed files with 19 additions and 4 deletions
+6
View File
@@ -23,4 +23,10 @@ describe('router', () => {
expect(router.resolve('/artist/some-slug').name).toBe('artist')
expect(router.resolve('/artist/some-slug').params.slug).toBe('some-slug')
})
it('series-read is an immersive route', () => {
const r = router.resolve('/series/5/read')
expect(r.name).toBe('series-read')
expect(r.meta.immersive).toBe(true)
})
})