mirror of
https://github.com/mudler/LocalAI.git
synced 2026-05-30 03:25:42 -04:00
- Strict monotonic Go coverage gate (make test-coverage-check, 45% baseline) run in CI; fixes ginkgo dropping all-but-one coverprofile across multiple recursive roots, builds with -tags auth, and folds in the in-process tests/e2e suite via --coverpkg. - React UI e2e coverage (make test-ui-coverage: vite-plugin-istanbul + nyc, nix-provided Chromium) plus e2e specs for 6 previously-untested pages, and a UI coverage gate (make test-ui-coverage-check) with a small tolerance since e2e line coverage jitters ~0.5pp run-to-run. - pre-commit hook: lint + coverage on Go changes, Playwright e2e + UI coverage gate on react-ui changes; install with make install-hooks. - New Go handler tests (settings, branding), hermetic base64 download test. - fix(ui): model editor reads vram_display (snake_case), so the VRAM estimate renders again; covered by a regression test. Assisted-by: Claude:claude-opus-4-7 Signed-off-by: Richard Palethorpe <io@richiejp.com>
29 lines
1.2 KiB
JavaScript
29 lines
1.2 KiB
JavaScript
import { test, expect } from './coverage-fixtures.js'
|
|
|
|
// Backends admin page (src/pages/Backends.jsx).
|
|
test.describe('Backends management page', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/app/backends')
|
|
})
|
|
|
|
test('renders the management header and gallery tabs', async ({ page }) => {
|
|
await expect(page).toHaveURL(/\/app\/backends$/)
|
|
await expect(page.getByRole('heading', { name: 'Backend Management' })).toBeVisible()
|
|
await expect(page.getByRole('button', { name: 'Manual Install' })).toBeVisible()
|
|
await expect(page.getByRole('button').filter({ hasText: /^All$/ })).toBeVisible()
|
|
await expect(page.getByRole('button').filter({ hasText: /^Image$/ })).toBeVisible()
|
|
})
|
|
|
|
test('search field accepts input', async ({ page }) => {
|
|
const search = page.getByPlaceholder(/search backends/i)
|
|
await expect(search).toBeVisible()
|
|
await search.fill('whisper')
|
|
await expect(search).toHaveValue('whisper')
|
|
})
|
|
|
|
test('Manual Install reveals the OCI install form', async ({ page }) => {
|
|
await page.getByRole('button', { name: 'Manual Install' }).click()
|
|
await expect(page.getByPlaceholder('oci://quay.io/example/backend:latest')).toBeVisible()
|
|
})
|
|
})
|