feat(app): initialize analytical panel

This commit is contained in:
Gleb Korotkiy
2026-06-19 17:15:05 +03:00
commit 75e9616bcb
25 changed files with 2994 additions and 0 deletions

12
e2e/app.spec.ts Normal file
View File

@@ -0,0 +1,12 @@
import { expect, test } from '@playwright/test'
test('opens dashboard and navigates to reports', async ({ page }) => {
await page.goto('/')
await expect(page.getByRole('heading', { name: 'Аналитическая панель' })).toBeVisible()
await page.getByRole('link', { name: 'Отчеты' }).click()
await expect(page.getByRole('heading', { name: 'Отчеты' })).toBeVisible()
await expect(page.getByRole('cell', { name: 'Еженедельная динамика' })).toBeVisible()
})