gpt4 book ai didi

angular - 我可以通过 Angular CLI 运行 Jest 吗?

转载 作者:行者123 更新时间:2023-12-05 06:33:23 33 4
gpt4 key购买 nike

我已将 Angular 6 应用程序配置为在运行“npm run test”时使用 Jest 运行测试。这很好用。我希望能够在执行“ng 测试”时运行那些相同的测试。是否可以配置 Angular CLI 来执行此操作?

最佳答案

我真的推荐使用 Jest builder如果你想在你的 Angular CLI 项目中切换到 Jest。我们刚刚在我们的一个项目中从 Karma 迁移到 Jest,它就像一个魅力。作为引用,以下是在新项目中切换到 Jest 的最少步骤:

  1. 创建项目

    $ ng new myapp
    $ cd myapp
  2. 删除 Karma 依赖项、配置文件和 test.ts:

    $ yarn remove karma karma-chrome-launcher karma-coverage-istanbul-reporter karma-jasmine karma-jasmine-html-reporter
    $ rm src/karma.conf.js src/test.ts
  3. 安装 Jest 构建器,创建配置文件:

    $ yarn add --dev jest @angular-builders/jest
    $ touch src/jest.config.js
  4. src/tsconfig.spec.json 中切换到 commonjs:

    {
    "extends": "../tsconfig.json",
    "compilerOptions": {
    "outDir": "../out-tsc/spec",
    "module": "commonjs",
    "types": [
    "jasmine",
    "node"
    ]
    },
    "include": [
    "**/*.spec.ts",
    "**/*.d.ts"
    ]
    }
  5. 切换到 angular.json 中的 Jest 构建器:

    {
    ...
    "test": {
    "builder": "@angular-builders/jest:run",
    "options": {
    "styles": [
    "src/styles.css"
    ],
    "scripts": [],
    "assets": [
    "src/favicon.ico",
    "src/assets"
    ]
    }
    },
    ...
    }

现在您将使用 Jest 运行测试:

$ ng test
PASS src/app/app.component.spec.ts
AppComponent
✓ should create the app (223ms)
✓ should have as title 'myapp' (80ms)
✓ should render title in a h1 tag (70ms)

Test Suites: 1 passed, 1 total
Tests: 3 passed, 3 total
Snapshots: 0 total
Time: 3.704s
Ran all test suites.

关于angular - 我可以通过 Angular CLI 运行 Jest 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50786359/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com