Files
Compass/jest.setup.d.ts
MartinBraquet e6de25c0a4 Fix some lints
2025-08-04 11:44:24 +02:00

15 lines
412 B
TypeScript

// // This file extends the global Jest namespace with custom matchers from @testing-library/jest-dom
// import '@testing-library/jest-dom';
//
// declare global {
// namespace jest {
// interface Matchers<R> {
// toBeInTheDocument(): R;
// toHaveClass(...classes: string[]): R;
// // Add other custom matchers you use from @testing-library/jest-dom
// }
// }
// }
//
// export {};