UNPKG

@earnaha/auth0-action-helper

Version:
29 lines (21 loc) 844 B
/* * For a detailed explanation regarding each configuration property and type check, visit: * https://jestjs.io/docs/configuration */ const globalConfig = require('./jest.config.js'); module.exports = { ...globalConfig, displayName: 'units', // The glob patterns Jest uses to detect test files // testMatch: [ // "**/__tests__/**/*.[jt]s?(x)", // "**/?(*.)+(spec|test).[tj]s?(x)" // ], testMatch: ['**/__tests__/?*.test.[jt]s?(x)'], // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped testPathIgnorePatterns: ['/node_modules/'], // The regexp pattern or array of patterns that Jest uses to detect test files // testRegex: '(/__tests__/.*|(\\.|/)(test))\\.jsx?$', // This option allows the use of a custom results processor // testResultsProcessor: undefined, };