2

我正在使用 WebStorm 2019.2、Angular 8 和最新的 nrwl monorepo。开始 Angular 测试时ng test <app-name>一切正常。如果我尝试从 WebStorm 中运行测试(通过单击编辑器中的绿色三角形),我会收到以下错误:

Error: Failed: "Zone is needed for the async() test helper but could not be found.
Please make sure that your environment includes zone.js/dist/zone.js"

我尝试了几个小时的谷歌搜索以找到解决该问题的方法,但没有成功。知道如何解决这个问题吗?

PS:monorepo 还托管了一个 NestJS 服务器。在 WebStorm 中运行单个测试适用于 NestJS 应用程序。

4

1 回答 1

4

请尝试来自https://github.com/nrwl/nx/pull/1467#issuecomment-506973401的解决方法:

  1. 将以下 jest 配置添加到package.json并在必要时进行调整:
 "jest": {
    "preset": "jest-preset-angular",
    "setupFilesAfterEnv": [
      "<rootDir>/apps/nx-jest-example/src/test-setup.ts"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/node_modules/",
      "<rootDir>/dist/",
      "<rootDir>/src/test.ts",
      "<rootDir>/apps/nx-jest-example-e2e/"
    ],
    "globals": {
      "ts-jest": {
        "diagnostics": false,
        "tsConfig": "<rootDir>/apps/nx-jest-example/tsconfig.spec.json",
        "stringifyContentPathRegex": "\\.html$",
        "astTransformers": [
          "<rootDir>/node_modules/jest-preset-angular/InlineHtmlStripStylesTransformer"
        ]
      }
    }
  }

  1. 更改编辑配置中的配置以使用package.json而不是jest.config
于 2019-08-18T12:08:07.320 回答