phase 16 implementation

This commit is contained in:
root
2026-06-25 20:08:39 -04:00
parent 5d017f533a
commit c43620a005
248 changed files with 18458 additions and 90 deletions
+2 -2
View File
@@ -18,11 +18,11 @@ for (const scenario of [
await expect(page.locator('main > section')).toHaveCount(12);
});
test(`${scenario.locale} unresolved actions are non-navigable`, async ({ page }) => {
test(`${scenario.locale} unresolved actions remain non-navigable`, async ({ page }) => {
await page.goto(`/${scenario.locale}`);
const disabledActions = page.locator('main [aria-disabled="true"]');
await expect(disabledActions).toHaveCount(5);
await expect(disabledActions).toHaveCount(3);
await expect(disabledActions.first()).not.toHaveAttribute('href');
});
}