Login works (JUnit 5)
Generated output
Section titled “Generated output”### ✅ Login worksTags: `smoke`, `auth`
- **Given** the user is on the login page- **When** the user logs in with valid credentials- **Then** the user should be logged inKotlin code
Section titled “Kotlin code”import dev.executablestories.junit5.Storyimport org.junit.jupiter.api.Test
class LoginTest { @Test fun `login works`() { Story.init("Login works", "smoke", "auth") Story.given("the user is on the login page") Story.`when`("the user logs in with valid credentials") Story.then("the user should be logged in") }}