diff --git a/client/src/parsec/internals.ts b/client/src/parsec/internals.ts index 4e5108d2109..50261ae23be 100644 --- a/client/src/parsec/internals.ts +++ b/client/src/parsec/internals.ts @@ -3,7 +3,7 @@ import { ClientConfig } from '@/parsec/types'; import { MountpointMountStrategyTag, WorkspaceStorageCacheSizeTag } from '@/plugins/libparsec'; -export const MOCK_WAITING_TIME = 500; +export const MOCK_WAITING_TIME = 800; export const DEFAULT_HANDLE = 42; export async function wait(delay: number): Promise { diff --git a/client/tests/e2e/helpers/fixtures.ts b/client/tests/e2e/helpers/fixtures.ts index 9e457f5eab4..ce39b166a61 100644 --- a/client/tests/e2e/helpers/fixtures.ts +++ b/client/tests/e2e/helpers/fixtures.ts @@ -152,6 +152,7 @@ export const msTest = base.extend<{ }, clientArea: async ({ home }, use) => { + UserData.reset(); await MockBms.mockLogin(home); await MockBms.mockUserRoute(home); await MockBms.mockListOrganizations(home); @@ -181,7 +182,3 @@ export const msTest = base.extend<{ await use(home); }, }); - -msTest.beforeEach(async () => { - UserData.reset(); -});