7 lines
213 B
TypeScript
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)
|
|
})
|