Files
dify-plus/web/jest.setup.ts
Stephen Zhou eabdc5f0eb refactor(web): migrate to Vitest and esm (#29974)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
2025-12-22 16:35:22 +08:00

7 lines
118 B
TypeScript

import '@testing-library/jest-dom'
import { cleanup } from '@testing-library/react'
afterEach(() => {
cleanup()
})