Files
2026-07-11 08:54:43 +02:00

7 lines
213 B
TypeScript

import { Given } from '@cucumber/cucumber'
import type { PerausetWorld } from '../support/world.js'
Given('I login as {string}', async function (this: PerausetWorld, email: string) {
await this.login(email)
})