import '@testing-library/jest-dom' // Mock全局对象 global.fetch = jest.fn() // 测试前清理 beforeEach(() => { jest.clearAllMocks() }) // 测试后清理 afterEach(() => { jest.resetAllMocks() })