dify/e2e/support/cleanup.ts
yyh d66de8a47b
test(e2e): harden behavior coverage and CI gates (#39043)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-16 07:32:11 +00:00

22 lines
522 B
TypeScript

export type CleanupTask = {
label: string
run: () => Promise<void> | void
}
export const shouldFailForCleanupErrors = (status: string | undefined) =>
status === 'PASSED' || status === 'SKIPPED'
export async function runCleanupTasks(tasks: CleanupTask[]): Promise<string[]> {
const errors: string[] = []
for (const task of tasks) {
try {
await task.run()
} catch (error) {
errors.push(`${task.label}: ${error instanceof Error ? error.message : String(error)}`)
}
}
return errors
}