setup.ts 185 B

12345678
  1. import '@testing-library/jest-dom';
  2. import { afterEach } from 'vitest';
  3. import { cleanup } from '@testing-library/react';
  4. // 在每个测试后清理
  5. afterEach(() => {
  6. cleanup();
  7. });