0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-14 00:01:05 +02:00

Apply suggestion from @silverwind

Signed-off-by: silverwind <me@silverwind.io>
This commit is contained in:
silverwind 2026-04-27 01:06:02 +02:00 committed by GitHub
parent dbe3328e6a
commit a9a2e6085f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,8 +19,6 @@ test('add collaborator search', async ({page, request}) => {
await expect(result).toContainText(userName);
await result.click();
await expect(input).toHaveValue(userName);
// submit and confirm the chosen user lands in the collaborator list
await page.getByRole('button', {name: 'Add Collaborator'}).click();
await expect(page.locator('body')).toContainText(userName);
});