diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-29 18:15:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-29 08:15:05 -0700 |
commit | d6dc52b6eadade991846c61e748d09a6f2b0ef78 (patch) | |
tree | 4f984fe151c6b5f58b3e245ed3a4721ecbb3af9c /src/screens/Onboarding/index.tsx | |
parent | 541502c7eeaf54aed3468136c89a2496df16850c (diff) | |
download | voidsky-d6dc52b6eadade991846c61e748d09a6f2b0ef78.tar.zst |
Improve e2e tests (#8927)
* get e2e image picker working * verify create account actually reaches onboarding * wait for image to actually be attached before posting * wait until login finishes before moving on * sign out before switch accounts then wait until logged in * disable onboarding experiments in e2e * add testId to handle availability checkmark * fix too long username * update thread muting test to reflect current behaviour * hackfix for the british english translation * unflake the onboarding tests * fix curate list flow * admit defeat on the most list one
Diffstat (limited to 'src/screens/Onboarding/index.tsx')
-rw-r--r-- | src/screens/Onboarding/index.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screens/Onboarding/index.tsx b/src/screens/Onboarding/index.tsx index 2291e5e4f..f13402ece 100644 --- a/src/screens/Onboarding/index.tsx +++ b/src/screens/Onboarding/index.tsx @@ -13,13 +13,15 @@ import {StepFinished} from '#/screens/Onboarding/StepFinished' import {StepInterests} from '#/screens/Onboarding/StepInterests' import {StepProfile} from '#/screens/Onboarding/StepProfile' import {Portal} from '#/components/Portal' +import {ENV} from '#/env' import {StepSuggestedAccounts} from './StepSuggestedAccounts' export function Onboarding() { const {_} = useLingui() const gate = useGate() - const showValueProp = gate('onboarding_value_prop') - const showSuggestedAccounts = gate('onboarding_suggested_accounts') + const showValueProp = ENV !== 'e2e' && gate('onboarding_value_prop') + const showSuggestedAccounts = + ENV !== 'e2e' && gate('onboarding_suggested_accounts') const [state, dispatch] = useReducer(reducer, { ...initialState, totalSteps: showSuggestedAccounts ? 4 : 3, |