UNPKG

@dr.pogodin/react-helmet

Version:

Thread-safe Helmet for React 19+ and friends

25 lines (23 loc) 509 B
/* global module */ module.exports = { collectCoverage: true, collectCoverageFrom: [ 'src/**/*.{js,jsx,mjs,ts,tsx}', ], coverageDirectory: '__coverage__', rootDir: '../..', setupFilesAfterEnv: [ '<rootDir>/config/jest/setup.ts', ], testEnvironmentOptions: { url: 'http://localhost', }, testMatch: ['**/__tests__/**/*.{js,jsx,mjs,ts,tsx}'], testPathIgnorePatterns: [ '/__assets__/', '/node_modules/', ], transform: { '\\.(m?(j|t)sx?)$': 'babel-jest', }, };