1/** @type {import('@jest/types').Config.InitialOptions} */ 2module.exports = { 3 displayName: 'docs', 4 testEnvironment: 'jsdom', 5 testMatch: ['**/*.test.(js|ts|tsx)'], 6 setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect', './jest.setup.js'], 7 clearMocks: true, 8 coverageDirectory: '<rootDir>/coverage', 9}; 10