react-data-export
Version:
A set of tools to export dataset from react to different formats.
20 lines (19 loc) • 414 B
JavaScript
module.exports = {
name: 'react-data-export-jest',
verbose: true,
collectCoverage: true,
coveragePathIgnorePatterns: [
'node_modules',
],
testEnvironment: 'node',
testRegex: '(/test/unit.*\\.test)\\.js',
setupFiles: [
'./test/global.js'
],
modulePathIgnorePatterns: [
'global.js'
],
testPathIgnorePatterns: [
'__snapshots__'
]
};