Revert "debugging e2e"

This reverts commit 8fa49f298f.
This commit is contained in:
Henry Jameson 2026-06-23 16:01:39 +03:00
commit 7425392413
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ export default defineConfig({
use: {
baseURL,
screenshot: 'only-on-failure',
trace: 'on',
trace: 'on-first-retry',
video: 'retain-on-failure',
},
webServer: {

View file

@ -22,6 +22,6 @@ test('admin can open the admin settings modal', async ({ page }) => {
modal.getByRole('heading', { name: 'Administration' }),
).toBeVisible()
await modal.getByRole('tab', { name: 'Emoji' }).click()
await modal.getByRole('tab', { title: 'Emoji' }).click()
await expect(modal.getByText('Emoji packs')).toBeVisible()
})