Change email address (Vitest)
Generated output
Section titled “Generated output”### ✅ Change email address
- **Given** the user account exists- **And** the user is logged in- **Then** a verification email should be sent- **And** the email status should be "pending verification"Vitest code
Section titled “Vitest code”describe("Feature: Account settings", () => { it("Change email address", ({ task }) => { story.init(task); story.given("the user account exists"); story.given("the user is logged in"); story.then("a verification email should be sent"); story.then('the email status should be "pending verification"'); });});