dify/web/jest.setup.ts

7 lines
118 B
TypeScript
Raw Normal View History

2025-04-11 17:53:18 +08:00
import '@testing-library/jest-dom'
2025-04-18 15:54:22 +08:00
import { cleanup } from '@testing-library/react'
afterEach(() => {
cleanup()
})