Add admin FAQ help article
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-01-23 09:53:10 +01:00
parent 6f7bf818dd
commit df5e8204fa
6 changed files with 79 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import { describe, expect, it, vi } from 'vitest';
import { render, screen } from '@testing-library/react';
const articles = [
{ slug: 'admin-issue-resolution', title: 'FAQ & Troubleshooting', summary: 'Common issues.' },
{ slug: 'faq-admin', title: 'FAQ: Event Admin', summary: 'Common issues.' },
{ slug: 'tenant-dashboard-overview', title: 'Dashboard overview', summary: 'Learn the dashboard.' },
];
@@ -89,7 +89,7 @@ describe('MobileHelpCenterPage', () => {
it('renders FAQ and guide articles', async () => {
render(<MobileHelpCenterPage />);
expect(screen.getByText('FAQ & Troubleshooting')).toBeInTheDocument();
expect(screen.getByText('FAQ: Event Admin')).toBeInTheDocument();
expect(screen.getByText('Dashboard overview')).toBeInTheDocument();
});
});