Skip to content

Commit a3e650b

Browse files
committed
chore: clean comments
Signed-off-by: Peter Ringelmann <peter.ringelmann@nextcloud.com>
1 parent e4b60ec commit a3e650b

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

playwright/e2e/admin-settings.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ test('Admin Guests settings page renders without errors', async ({ adminPage })
1313

1414
await adminPage.goto('/settings/admin/guests')
1515

16-
// If t() is missing in methods, the whole settings component fails to render
17-
// and these assertions fail. That's the 4.7.0 regression class this guards.
1816
await expect(adminPage.getByRole('heading', { name: 'Guests', exact: true })).toBeVisible()
1917
await expect(adminPage.getByRole('checkbox', { name: /external storage/i })).toBeVisible()
2018

playwright/e2e/invite-guest.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ test('Invite Guest dialog submits and creates the account', async ({
3131

3232
await dialog.getByLabel(/guest name|name/i).first().fill('Playwright Guest')
3333

34-
// The submit button must actually submit the form; the v4.7.0 nativeType="submit"
35-
// regression broke that silently.
3634
const responsePromise = adminPage.waitForResponse((r) => r.url().includes('/apps/guests/api/v1/users') && r.request().method() === 'PUT')
3735
await dialog.getByRole('button', { name: /invite (guest|user)/i }).click()
3836
const response = await responsePromise

0 commit comments

Comments
 (0)