Stabilize the release gate for the Tomorrow wrap-up handoff #1176

Merged
rockachopa merged 1 commits from timmy/1174-today-wrap-up-tomorrow-handoff-rc into main 2026-08-20 10:24:39 +00:00

View File

@ -71,8 +71,12 @@ def test_release_artifact_guides_an_empty_mobile_account_to_first_work(
"""() => {
document.querySelector('[data-mobile-today-hud]').hidden = false;
localStorage.setItem('stackchain.first-task.v1:timmy', 'coaching');
const productionCoach = document.querySelector('[data-mobile-first-task-coach]');
const isolatedCoach = productionCoach.cloneNode(true);
productionCoach.replaceWith(isolatedCoach);
window.firstTaskOutcomeProbe = createMobileFirstTask({
getLogin: () => 'timmy', hasWork: () => true, isTodayActive: () => true,
coach: isolatedCoach,
});
return window.firstTaskOutcomeProbe.refresh();
}"""