Test for Smokeball
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
301 B

  1. import type { Config } from '@jest/types';
  2. const config: Config.InitialOptions = {
  3. transform: {
  4. '^.+\\.tsx?$': 'ts-jest',
  5. },
  6. testRegex: '(/__tests__/.*|(src|test)/.*(\\.|-|/)(test|spec))\\.(jsx?|tsx?)$',
  7. moduleFileExtensions: ['ts', 'tsx', 'json', 'js', 'jsx'],
  8. };
  9. export default config;