Files
dify/e2e/features/step-definitions/common/auth.steps.ts
2026-03-29 13:40:24 +00:00

12 lines
364 B
TypeScript

import { Given } from '@cucumber/cucumber'
import type { DifyWorld } from '../../support/world'
Given('I am signed in as the default E2E admin', async function (this: DifyWorld) {
const session = await this.getAuthSession()
this.attach(
`Authenticated as ${session.adminEmail} using ${session.mode} flow at ${session.baseURL}.`,
'text/plain',
)
})