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

13 lines
345 B
TypeScript

import { Given } from '@cucumber/cucumber'
import { expect } from '@playwright/test'
import type { DifyWorld } from '../../support/world'
Given(
'the last authentication bootstrap came from a fresh install',
async function (this: DifyWorld) {
const session = await this.getAuthSession()
expect(session.mode).toBe('install')
},
)