Change email address (Playwright)
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"Playwright code
Section titled “Playwright code”import { test } from '@playwright/test';import { story } from 'executable-stories-playwright';
test.describe("Feature: Account settings", () => { test("Change email address", async ({}, testInfo) => { story.init(testInfo); 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"'); });});