0

运行npm t -- --watch未检测到对测试文件的更改。如果我运行npm tnpm run test:changed(我的脚本仅运行通过 覆盖更改的文件的测试jest -o)一切正常,但是,不会检测到任何更改并且不会重新运行测试。

知道我做错了什么吗?

对于额外的上下文,我正在使用ts-jest这里是我的一些相关配置文件:

src/tsconfig.json

{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es6",
    "moduleResolution": "node",
    "outDir": "../dist",
    "esModuleInterop": true,
    "noImplicitAny": true,
    "noEmitOnError": true,
    "sourceMap": true,
    "forceConsistentCasingInFileNames": true,
    "lib": ["esnext", "esnext.asynciterable"],
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true
  },
  "include": ["./**/*.ts"],
  "exclude": ["node_modules", "./**/*.test.ts"]
}

jest.config.ts

module.exports = {
  globals: {
    'ts-jest': {
      tsConfig: 'src/tsconfig.json',
    },
  },
  moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx'],
  roots: ['src'],
  transform: {
    '^.+\\.(ts|tsx)$': 'ts-jest',
  },
  testMatch: ['**/*.test.(ts|js)'],
  testEnvironment: 'node',
  preset: 'ts-jest',
  collectCoverageFrom: ['./src/**/*.ts', '!./src/migration/**', '!./src/tests/**'],
  coverageDirectory: './',
  coverageThreshold: {
    global: {
      statements: 60,
      branches: 45,
      functions: 35,
      lines: 60,
    },
  },
};

4

2 回答 2

0

原来问题是我将 Jest 配置为./用于覆盖位置(一切都是.gitignore'd,所以谁在乎¯\_(ツ)_/¯),这造成了问题。可以在 Jest repo 上找到有关相关问题的更多信息。

于 2019-12-04T17:38:47.443 回答
0

尝试npm jest --clearCache 有时,如果您使用 typescript,jests 缓存也会停止捕获更改,请尝试删除您的 dist 文件夹并重建。

于 2022-01-19T12:30:42.570 回答