Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

jest.config.js 297 B

1234567891011121314
  1. module.exports = {
  2. setupFilesAfterEnv: [
  3. 'jest-enzyme',
  4. 'jest-extended',
  5. './jest.setup.ts',
  6. ],
  7. collectCoverageFrom: [
  8. './lib/**/*.{ts,tsx}',
  9. '!./lib/**/*.stories.{ts,tsx}'
  10. ],
  11. preset: 'ts-jest',
  12. testTimeout: 30000,
  13. modulePathIgnorePatterns: ['<rootDir>/.docz'],
  14. }