Skip to content

User updates profile details (Jest)

### ✅ 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 details
import { story } from 'executable-stories-jest';
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");
});