ts react jest單元測試問題

Jest同時支持ts和react jsx

jest配置文件css

// jest.config.js

module.exports = {
  // preset: 'ts-jest',
  // testEnvironment: 'node',
  // roots: ['<rootDir>/src'],
  transform: {
      '^.+\\.tsx?$': 'ts-jest',
  },
  testRegex: '^.+\\.test\\.(ts|tsx)$',
  moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
  moduleNameMapper: {
    "\\.(css|less)$": "identity-obj-proxy",
  },
};

Jest 解析css文件異常

react hooks 的單元測試

相關文章
相關標籤/搜索