jest.config.js 348 B

12345678910
  1. module.exports = {
  2. transform: {
  3. '^.+\\.tsx?$': 'ts-jest'
  4. },
  5. setupTestFrameworkScriptFile: '@jupyterlab/testutils/lib/jestScript.js',
  6. testRegex: '(/tests/.*|(\\.|/)(test|spec))\\.tsx?$',
  7. testPathIgnorePatterns: ['/lib/', '/node_modules/'],
  8. collectCoverage: true,
  9. moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
  10. };