setup.ts 209 B

1234567891011121314
  1. import '@testing-library/jest-dom'
  2. // Mock全局对象
  3. global.fetch = jest.fn()
  4. // 测试前清理
  5. beforeEach(() => {
  6. jest.clearAllMocks()
  7. })
  8. // 测试后清理
  9. afterEach(() => {
  10. jest.resetAllMocks()
  11. })