UNPKG

terra-toolkit

Version:

Utilities to help when developing terra modules.

26 lines (25 loc) 526 B
module.exports = { collectCoverage: true, collectCoverageFrom: [ 'config/**/*.js', 'reporters/**/*.js', 'scripts/aggregate-themes/**/*.js', ], coverageDirectory: 'tests/jest/reports/coverage', coverageReporters: [ 'html', 'text', 'lcov', 'cobertura', 'text-summary', ], testMatch: [ '**/jest/**/(*.)(spec|test).js?(x)', ], reporters: [ 'default', '<rootDir>/reporters/jest/TerraVerboseReporter.js', ], roots: [process.cwd()], testURL: 'http://localhost', };