Next
Context
Unknown model
--
Context usage is unavailable for this session.
Account usage
Account quota is unavailable for this model provider.
The router has a table of paths and /pricing is missing from it — the page component exists and nothing points at it. I will add the route next to its neighbours and a test that walks the table rather than asserting one path, so the next missing route fails too.
Here is the change to src/routes.ts:
export const ROUTES = { '/': Home, '/pricing': Pricing, '/download': Download, } as const // The test walks ROUTES instead of naming one path, so a route that // exists as a component and never reaches this table still fails. for (const path of Object.keys(ROUTES)) { expect(await GET(path)).toHaveStatus(200) }