diff --git a/apps/e2e/tests/account/account.spec.ts b/apps/e2e/tests/account/account.spec.ts index 461f6bd38..8183bfc2b 100644 --- a/apps/e2e/tests/account/account.spec.ts +++ b/apps/e2e/tests/account/account.spec.ts @@ -38,6 +38,7 @@ test.describe('Account Settings', () => { test('user can update their password', async () => { const password = (Math.random() * 100000).toString(); + await account.updatePassword(password); await page.waitForResponse((resp) => { diff --git a/apps/e2e/tests/authentication/auth.po.ts b/apps/e2e/tests/authentication/auth.po.ts index c4018e5d4..8f816d784 100644 --- a/apps/e2e/tests/authentication/auth.po.ts +++ b/apps/e2e/tests/authentication/auth.po.ts @@ -74,10 +74,6 @@ export class AuthPageObject { repeatPassword: 'password', }); - await this.page.waitForResponse((resp) => { - return resp.url().includes('auth'); - }); - await this.visitConfirmEmailLink(email); } } \ No newline at end of file diff --git a/turbo.json b/turbo.json index e678bde4e..936504c48 100644 --- a/turbo.json +++ b/turbo.json @@ -48,9 +48,6 @@ "test": { "dependsOn": [ "^topo" - ], - "outputs": [ - "node_modules/.cache/tsbuildinfo.json" ] }, "clean": {