mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-12-22 23:33:15 -05:00
Update tests/e2e/shared/forms.ts
Typo
This commit is contained in:
parent
af8edb4ff3
commit
8b4b209861
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ export async function validate_form({page}: {page: Page}, scope: 'form' | 'field
|
||||||
];
|
];
|
||||||
await accessibilityCheck({page}, [scope], excludedElements, []);
|
await accessibilityCheck({page}, [scope], excludedElements, []);
|
||||||
|
|
||||||
// assert CSS properties that needed to be overriden for forms (ensure they remain active)
|
// assert CSS properties that needed to be overridden for forms (ensure they remain active)
|
||||||
const boxes = page.getByRole('checkbox').or(page.getByRole('radio'));
|
const boxes = page.getByRole('checkbox').or(page.getByRole('radio'));
|
||||||
for (const b of await boxes.all()) {
|
for (const b of await boxes.all()) {
|
||||||
await expect(b).toHaveCSS('margin-left', '0px');
|
await expect(b).toHaveCSS('margin-left', '0px');
|
||||||
|
@ -25,7 +25,7 @@ export async function validate_form({page}: {page: Page}, scope: 'form' | 'field
|
||||||
expect(str.split('\n')[0]).not.toContain(':');
|
expect(str.split('\n')[0]).not.toContain(':');
|
||||||
}
|
}
|
||||||
|
|
||||||
// check that multiple help text are correctly aligned to each other
|
// check that multiple help texts are correctly aligned to each other
|
||||||
// used for example to separate read/write permissions in team permission matrix
|
// used for example to separate read/write permissions in team permission matrix
|
||||||
for (const l of await page.locator('label:has(.help + .help)').all()) {
|
for (const l of await page.locator('label:has(.help + .help)').all()) {
|
||||||
const helpLabels = await l.locator('.help').all();
|
const helpLabels = await l.locator('.help').all();
|
||||||
|
|
Loading…
Reference in a new issue