File tree Expand file tree Collapse file tree
crates/jcode-tui/src/tui/app/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -285,11 +285,14 @@ fn login_phase_advances_to_model_select_without_telemetry_prompt() {
285285 Some ( OnboardingPhase :: Login { .. } )
286286 ) ) ;
287287 // After login we no longer ask a telemetry-consent question; we advance
288- // straight to model selection and leave content sharing off.
288+ // straight through model selection into the first-run start choice and
289+ // leave content sharing off.
289290 app. onboarding_after_login ( ) ;
290291 assert ! ( matches!(
291292 app. onboarding_phase( ) ,
292- Some ( OnboardingPhase :: ModelSelect ) | Some ( OnboardingPhase :: Suggestions )
293+ Some ( OnboardingPhase :: ModelSelect )
294+ | Some ( OnboardingPhase :: Suggestions )
295+ | Some ( OnboardingPhase :: StartChoice { .. } )
293296 ) ) ;
294297 assert ! ( !crate :: telemetry:: content_sharing_enabled( ) ) ;
295298 } ) ;
You can’t perform that action at this time.
0 commit comments