Add phenotype cloning, failure atlas, AI court session, and clearance L0-L4
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

This commit is contained in:
AetherForge
2026-06-07 02:41:54 -07:00
parent 4b94776432
commit d9f36f182c
47 changed files with 4859 additions and 94 deletions

View File

@@ -29,6 +29,19 @@ test.describe('Page smoke', () => {
await expect(page.getByRole('button', { name: 'Save Calibration' })).toBeVisible();
});
test('Settings shows Calibration Control mode toggle', async ({ page }) => {
await page.getByRole('navigation').getByRole('link', { name: 'Calibrate', exact: true }).click();
await expect(page.getByRole('heading', { name: 'Calibrate' })).toBeVisible({ timeout: 10_000 });
await expect(page.getByRole('group', { name: 'Calibration control mode' })).toBeVisible({
timeout: 10_000,
});
await expect(page.getByRole('button', { name: /Logic gates/i })).toBeVisible();
await expect(page.getByRole('button', { name: /AI Control/i })).toBeVisible();
await page.getByRole('button', { name: /AI Control/i }).click();
await expect(page.getByPlaceholderText('http://127.0.0.1:11434/v1')).toBeVisible();
await expect(page.getByRole('button', { name: 'Refresh models' })).toBeVisible();
});
test('Builder renders The Forge', async ({ page }) => {
await page.getByRole('link', { name: /Forge/i }).click();
await expect(page.getByRole('heading', { name: 'The Forge' })).toBeVisible({ timeout: 10_000 });