mirror of
https://github.com/langgenius/dify.git
synced 2026-06-12 19:53:38 +08:00
16 lines
496 B
TypeScript
16 lines
496 B
TypeScript
/**
|
|
* Vitest global teardown — runs once after all E2E suites complete.
|
|
*
|
|
* Responsibilities:
|
|
* 1. Delete all conversations created on the staging server during the run
|
|
* (collected via registerConversation() in test suites).
|
|
*
|
|
* Deletion is best-effort — failures are logged but do not fail the run.
|
|
*/
|
|
|
|
import { cleanupRegisteredConversations } from '../helpers/cleanup-registry.js'
|
|
|
|
export async function teardown(): Promise<void> {
|
|
await cleanupRegisteredConversations()
|
|
}
|