Add dedicated mobile event add-ons page
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-07 15:00:14 +01:00
parent ddbfa38db1
commit 922da46331
10 changed files with 847 additions and 189 deletions

View File

@@ -515,6 +515,11 @@ describe('MobileBillingPage', () => {
render(<MobileBillingPage />);
expect(await screen.findByText('Buy add-ons for this event')).toBeInTheDocument();
const buyAddonsButton = await screen.findByText('Buy add-ons for this event');
expect(buyAddonsButton).toBeInTheDocument();
fireEvent.click(buyAddonsButton);
expect(navigateMock).toHaveBeenCalledWith('/mobile/events/fruehlingsfest/addons');
});
});