Gabriel Rocha
Results
1
comments of
Gabriel Rocha
That works for me 1. **Create/update `jest.setup.ts`:** ```typescript import '@testing-library/jest-dom'; ``` 2. **Update `jest.config.ts`:** ```typescript // ...other configs setupFilesAfterEnv: ['/jest.setup.ts'], ``` 3. **Add type definitions in `tsconfig.json`:** ```json "compilerOptions": {...