User updates profile details (Cypress)
Generated output
Section titled “Generated output”### ✅ User updates profile details
- **Given** the user is logged in- **When** the user changes their display name- **And** the user changes their time zone- **And** the user saves the profile- **Then** the profile should show the updated detailsCypress code
Section titled “Cypress code”import { story } from 'executable-stories-cypress';
it("User updates profile details", () => { story.init(); story.given("the user is logged in"); story.when("the user changes their display name"); story.when("the user changes their time zone"); story.when("the user saves the profile"); story.then("the profile should show the updated details");});