diff --git a/apps/website/public/icons/clients/EA.svg b/apps/website/public/icons/clients/EA.svg deleted file mode 100644 index 78fc6c94c4..0000000000 --- a/apps/website/public/icons/clients/EA.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/website/src/components/common/SocialProofBarSection.vue b/apps/website/src/components/common/SocialProofBarSection.vue index e261a18591..dc901bef9a 100644 --- a/apps/website/src/components/common/SocialProofBarSection.vue +++ b/apps/website/src/components/common/SocialProofBarSection.vue @@ -3,7 +3,6 @@ const logos = [ 'Amazon Studios', 'Apple', 'Autodesk', - 'EA', 'Harman', 'Hp', 'Lucid', diff --git a/browser_tests/tests/dialog.spec.ts b/browser_tests/tests/dialog.spec.ts index 9a6889a38b..1569ee3322 100644 --- a/browser_tests/tests/dialog.spec.ts +++ b/browser_tests/tests/dialog.spec.ts @@ -157,6 +157,13 @@ test.describe('Signin dialog', () => { }) test('Sign-in dialog resolves true on login', async ({ comfyPage }) => { + await comfyPage.page.route('**/customers', (route) => + route.fulfill({ + status: 201, + contentType: 'application/json', + body: JSON.stringify({ id: 'test-user-e2e', email: 'test@example.com' }) + }) + ) const dialog = new SignInDialog(comfyPage.page) const { result: dialogResult } = await dialog.openWithResult()