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) })