mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-21 17:34:24 +01:00
Fix for frontend linter issues
This commit is contained in:
parent
0228b4f138
commit
f507aa0be0
|
@ -21,9 +21,9 @@ test('Markdown image preview behaviour', async ({browser}, workerInfo) => {
|
|||
|
||||
await page.locator('[data-tooltip-content="Edit file"]').click();
|
||||
|
||||
const editor = page.getByRole("presentation").nth(0);
|
||||
const editor = page.getByRole('presentation').nth(0);
|
||||
await editor.click();
|
||||
await page.keyboard.press("ControlOrMeta+KeyA");
|
||||
await page.keyboard.press('ControlOrMeta+KeyA');
|
||||
await page.keyboard.type('![Logo of Forgejo](./assets/logo.svg "Logo of Forgejo")');
|
||||
|
||||
await page.locator('a[data-tab="preview"]').click();
|
||||
|
|
Loading…
Reference in a new issue