Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"ng e2e --prod" fails #10909

Closed
tristanmkernan opened this issue May 18, 2018 · 3 comments
Closed

"ng e2e --prod" fails #10909

tristanmkernan opened this issue May 18, 2018 · 3 comments

Comments

@tristanmkernan
Copy link

Versions

Angular CLI: 6.0.3                                                                                                                                          │
Node: 10.0.0                                                                                                                                                │
OS: linux x64                                                                                                                                               │
Angular: 6.0.2                                                                                                                                              │
... animations, common, compiler, compiler-cli, core, forms                                                                                                 │
... http, language-service, platform-browser                                                                                                                │
... platform-browser-dynamic, router                                                                                                                        │
                                                                                                                                                            │
Package                           Version                                                                                                                   │
-----------------------------------------------------------                                                                                                 │
@angular-devkit/architect         0.6.3                                                                                                                     │
@angular-devkit/build-angular     0.6.3                                                                                                                     │
@angular-devkit/build-optimizer   0.6.3                                                                                                                     │
@angular-devkit/core              0.6.3                                                                                                                     │
@angular-devkit/schematics        0.6.3                                                                                                                     │
@angular/cli                      6.0.3                                                                                                                     │
@ngtools/webpack                  6.0.3                                                                                                                     │
@schematics/angular               0.6.3                                                                                                                     │
@schematics/update                0.6.3                                                                                                                     │
rxjs                              6.1.0                                                                                                                     │
typescript                        2.7.2                                                                                                                     │
webpack                           4.8.3                                                                                                                     │
    

Repro steps

  • Step 1: create a new app with ng new its-a-test-app
  • Step 2 run e2e tests normally with ng e2e
  • Step 3 run e2e tests against production configuration ng e2e --prod

Observed behavior

Configuration 'production' could not be found in project 'its-a-test-e2e'.
Error: Configuration 'production' could not be found in project 'its-a-test-e2e'.
    at Architect.getBuilderConfiguration (/tmp/its-a-test/node_modules/@angular-devkit/architect/src/architect.js:102:23)
    at MergeMapSubscriber._loadWorkspaceAndArchitect.pipe.operators_1.concatMap [as project] (/tmp/its-a-test/node_modules/@angular/cli/models/architect-command.js:64:55)
    at MergeMapSubscriber._tryNext (/tmp/its-a-test/node_modules/rxjs/internal/operators/mergeMap.js:122:27)
    at MergeMapSubscriber._next (/tmp/its-a-test/node_modules/rxjs/internal/operators/mergeMap.js:112:18)
    at MergeMapSubscriber.Subscriber.next (/tmp/its-a-test/node_modules/rxjs/internal/Subscriber.js:103:18)
    at TapSubscriber._next (/tmp/its-a-test/node_modules/rxjs/internal/operators/tap.js:109:26)
    at TapSubscriber.Subscriber.next (/tmp/its-a-test/node_modules/rxjs/internal/Subscriber.js:103:18)
    at MergeMapSubscriber.notifyNext (/tmp/its-a-test/node_modules/rxjs/internal/operators/mergeMap.js:141:26)
    at InnerSubscriber._next (/tmp/its-a-test/node_modules/rxjs/internal/InnerSubscriber.js:30:21)
    at InnerSubscriber.Subscriber.next (/tmp/its-a-test/node_modules/rxjs/internal/Subscriber.js:103:18)                                                                         

Desired behavior

ng e2e --prod --aot should run the e2e tests against the production, AOT-compiled build of the application. I had an issue solely on production/AOT, so I would like to test against this configuration.

@filipesilva
Copy link
Contributor

You can add a configuration for e2e that runs against the production dev server:

"project-name-e2e": {
  "root": "e2e/",
  "projectType": "application",
  "architect": {
    "e2e": {
      "builder": "@angular-devkit/build-angular:protractor",
      "options": {
        "protractorConfig": "e2e/protractor.conf.js",
        "devServerTarget": "project-name:serve"
      },
      "configurations": {
        "production": {
          "devServerTarget": "project-name:build:production"
        }
      }
    },

This question has come up a couple of times so far though. I'll add it to the default schematics.

@tristanmkernan
Copy link
Author

thanks @filipesilva ! just a note, i had to change "devServerTarget": "project-name:build:production" to "devServerTarget": "project-name:serve:production" (build -> serve).

filipesilva added a commit to angular/devkit that referenced this issue May 21, 2018
filipesilva added a commit to angular/devkit that referenced this issue May 24, 2018
clydin pushed a commit to angular/devkit that referenced this issue May 29, 2018
hansl pushed a commit that referenced this issue Jun 6, 2018
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 8, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants