Many login attempts (Vitest)
Generated output
Section titled “Generated output”Example: Many login attempts: [email protected] -> success
### ✅ Many login attempts: [email protected] -> success
- **Given** the user is on the login page- **Then** the login result should be "success"Vitest code
Section titled “Vitest code”const manyLoginExamples = [ // ...];for (const row of manyLoginExamples) { it(`Many login attempts: ${row.email} -> ${row.result}`, ({ task }) => { story.init(task); story.given("the user is on the login page"); story.when(`the user logs in with "${row.email}" and "${row.password}"`); story.then(`the login result should be "${row.result}"`); });}