diff --git a/preload.js b/preload.js index 9ee45d477..c143899f3 100644 --- a/preload.js +++ b/preload.js @@ -30,7 +30,6 @@ window.getNodeVersion = () => configAny.node_version; window.sessionFeatureFlags = { useOnionRequests: true, useTestNet: isTestNet() || isTestIntegration(), - integrationTestEnv: isTestIntegration(), useClosedGroupV3: false, debug: { debugLogging: !_.isEmpty(process.env.SESSION_DEBUG), diff --git a/ts/components/inputs/SessionInput.tsx b/ts/components/inputs/SessionInput.tsx index 78f92d6ba..e7e5a9b66 100644 --- a/ts/components/inputs/SessionInput.tsx +++ b/ts/components/inputs/SessionInput.tsx @@ -414,6 +414,7 @@ export const SessionInput = (props: Props) => { ) : ( { - if (window.sessionFeatureFlags.integrationTestEnv) { - window.log.info( + if (isTestIntegration()) { + window.log.warn( 'shorting pickFileForAvatar as it does not work in playwright/notsending the filechooser event' ); diff --git a/ts/window.d.ts b/ts/window.d.ts index e7f973264..b7281c1dc 100644 --- a/ts/window.d.ts +++ b/ts/window.d.ts @@ -34,7 +34,6 @@ declare global { useOnionRequests: boolean; useTestNet: boolean; useClosedGroupV3: boolean; - integrationTestEnv: boolean; debug: { debugLogging: boolean; debugLibsessionDumps: boolean;