mirror of
https://github.com/langgenius/dify.git
synced 2026-04-01 03:01:11 -04:00
12 lines
364 B
TypeScript
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',
|
|
)
|
|
})
|