test(e2e): drop unused authenticatedPage from webhooks beforeEach

This commit is contained in:
kolaente 2026-04-21 11:22:57 +02:00 committed by kolaente
parent 425889b879
commit db634093e0
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import {test, expect} from '../../support/fixtures'
import {ProjectFactory} from '../../factories/project'
test.describe('Project webhooks', () => {
test.beforeEach(async ({authenticatedPage, currentUser}) => {
test.beforeEach(async ({currentUser}) => {
await ProjectFactory.create(1, {id: 1, owner_id: currentUser.id}, false)
})