diff --git a/packages/tests-e2e/src/complete/scenarios/corbado-auth-general/socials.spec.ts b/packages/tests-e2e/src/complete/scenarios/corbado-auth-general/socials.spec.ts index f4b1dbe19..75f4fb3fd 100644 --- a/packages/tests-e2e/src/complete/scenarios/corbado-auth-general/socials.spec.ts +++ b/packages/tests-e2e/src/complete/scenarios/corbado-auth-general/socials.spec.ts @@ -68,7 +68,7 @@ test.describe('social logins', () => { ); }); - test('signup with socials should be possible (account does not exist)', async ({ model }) => { + test.skip('signup with socials should be possible (account does not exist)', async ({ model }) => { await model.load(projectId, true, 'signup-init'); const email = process.env.PLAYWRIGHT_GOOGLE_EMAIL ?? ''; diff --git a/packages/tests-e2e/src/connect/fixtures/BaseTest.ts b/packages/tests-e2e/src/connect/fixtures/BaseTest.ts index bc0688907..7d1ad37e6 100644 --- a/packages/tests-e2e/src/connect/fixtures/BaseTest.ts +++ b/packages/tests-e2e/src/connect/fixtures/BaseTest.ts @@ -2,8 +2,8 @@ import { test as base } from '@playwright/test'; import { BaseModel } from '../models/BaseModel'; import { CDPSessionManager } from '../utils/CDPSessionManager'; -import { VirtualAuthenticator } from '../utils/VirtualAuthenticator'; import { NetworkRequestBlocker } from '../utils/NetworkRequestBlocker'; +import { VirtualAuthenticator } from '../utils/VirtualAuthenticator'; export const test = base.extend<{ model: BaseModel }>({ model: async ({ page }, use) => {