mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 02:28:30 +08:00
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
import type { Page } from '@playwright/test'
|
|
import { expect } from '@playwright/test'
|
|
|
|
export async function waitForAgentConfigureAutosaved(page: Page) {
|
|
await expect(page.getByRole('status', { name: /Saved/i }).first()).toBeVisible({
|
|
timeout: 30_000,
|
|
})
|
|
}
|