Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
// jest.config.js
module.exports = {
  transform: {
    '^.+\\.jsx?$': `<rootDir>/jest-transformer.js`,
  },
  testPathIgnorePatterns: [`node_modules`, `.cache`, `static`],
  transformIgnorePatterns: [`node_modules/(?!(gatsby)/)`],
  globals: {
    __PATH_PREFIX__: ``,
  },
  setupFilesAfterEnv: ['./jest.setup.js']
}