const { test, expect } = require('@playwright/test'); const { login, localized } = require('./helpers'); test('logs and usage pages show seeded data', async ({ page }) => { await login(page); await page.goto('/logs'); await expect(page.locator('.page-title')).toHaveText(localized('Logs', 'Логи')); await expect(page.locator('#status-filter')).toBeVisible(); await expect(page.locator('#export-logs-btn')).toBeVisible(); await expect(page.locator('#log-list')).toBeVisible(); await expect(page.locator('#log-list').locator('.empty-state, .log-entry, .log-row, .log-item').first()).toBeVisible(); await page.locator('#status-filter').selectOption('ok'); await expect(page.locator('#log-list').locator('.empty-state, .log-entry, .log-row, .log-item').first()).toBeVisible(); await page.goto('/usage'); await expect(page.locator('.page-title')).toHaveText(localized('Usage', 'Использование')); await expect(page.locator('#chart-bars .chart-col')).toHaveCount(7); await expect(page.locator('#usage-outcome-list')).toBeVisible(); await expect(page.locator('#usage-outcome-list').locator('.empty-state, .resource-card').first()).toBeVisible(); await expect(page.locator('#usage-tbody tr')).toHaveCount(1); });