web-dev-qa-db-ja.com

Angular 6つの更新仕様[オブジェクトErrorEvent]がスローされました

Angularアプリをバージョン4からバージョン6にアップグレードしています。すべてがng serveで正しく実行されています。問題は、一連のスペックファイルが[object ErrorEvent] thrownで失敗することです。これは以前に見たことがあります。通常は--sourceMap=falseフラグを指定してテストを実行し、より詳細なレポートを表示できますが、それでもこのあいまいなエラーが発生します。未定義の入力が含まれているコンポーネントがないことを確認しました。調査の結果、一部のユーザーがjasmine-core 3.0.0で問題が発生し、2.99.0に戻るまでこのエラーが発生しましたが、それでも私には何の効果もありませんでした。

このすべての最も奇妙な部分は、このエラーで失敗した仕様(またはすべての仕様)をxdescribeでき、その後、以前は失敗していなかった別の仕様が失敗する可能性があることです。

これがpackage.jsonです

{
  "name": "enterprise-frontend",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test --browsers=Chrome --code-coverage",
    "lint": "ng lint --type-check",
    "e2e": "ng e2e",
    "compodoc": "./node_modules/.bin/compodoc -p tsconfig.json -s"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^6.0.2",
    "@angular/cdk": "^6.0.2",
    "@angular/common": "^6.0.2",
    "@angular/compiler": "^6.0.2",
    "@angular/core": "^6.0.2",
    "@angular/forms": "^6.0.2",
    "@angular/http": "^6.0.2",
    "@angular/material": "^6.0.2",
    "@angular/platform-browser": "^6.0.2",
    "@angular/platform-browser-dynamic": "^6.0.2",
    "@angular/router": "^6.0.2",
    "@auth0/angular-jwt": "^2.0.0",
    "@ngrx/effects": "^6.0.1",
    "@ngrx/router-store": "^6.0.1",
    "@ngrx/store": "^6.0.1",
    "@ngrx/store-devtools": "^6.0.1",
    "auth0-js": "^9.5.1",
    "chart.js": "^2.7.2",
    "core-js": "^2.5.6",
    "lodash": "^4.17.10",
    "ng2-charts": "^1.6.0",
    "ng2-dnd": "^5.0.2",
    "ngx-clipboard": "^11.1.0",
    "rxjs": "^6.1.0",
    "rxjs-compat": "^6.1.0",
    "zone.js": "^0.8.26"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.6.3",
    "@angular/cli": "^6.0.3",
    "@angular/compiler-cli": "^6.0.2",
    "@angular/language-service": "^6.0.2",
    "@compodoc/compodoc": "^1.1.3",
    "@types/jasmine": "^2.8.7",
    "@types/jasminewd2": "~2.0.2",
    "@types/node": "^6.0.111",
    "codelyzer": "^4.3.0",
    "file-saver": "^1.3.8",
    "jasmine-core": "^2.99.1",
    "karma": "~2.0.2",
    "karma-chrome-launcher": "~2.2.0",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^1.4.3",
    "karma-jasmine": "^1.1.2",
    "karma-jasmine-html-reporter": "^0.2.2",
        "protractor": "~5.1.2",
        "ts-node": "~3.2.0",
        "tslint": "^5.10.0",
        "TypeScript": "^2.7.2"
      }
    }

そして、これが現在失敗している仕様の1つです(それらのほとんどはこれよりもはるかに複雑ですが、それはテスト自体の問題ではないと私に思わせます):

import { HttpClientModule } from '@angular/common/http';
import { MaterialModule } from '../../modules/material.module';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { NumberPerPageComponent } from './number-per-page.component';
import { NoopAnimationsModule } from '@angular/platform-browser/animations';

describe('NumberPerPageComponent', () => {
  let component: NumberPerPageComponent;
  let fixture: ComponentFixture<NumberPerPageComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ NumberPerPageComponent ],
      imports: [
        HttpClientModule,
        MaterialModule,
        NoopAnimationsModule
      ]
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(NumberPerPageComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should be created', () => {
    expect(component).toBeTruthy();
  });
});

コンポーネント自体は次のとおりです。

import { Component } from '@angular/core';

@Component({
  selector: 'app-number-per-page',
  templateUrl: './number-per-page.component.html',
  styleUrls: ['./number-per-page.component.scss']
})
export class NumberPerPageComponent {

  resultNumber = 10;

  constructor() { }

}
6
Mitch McCutchen

私が抱えていた問題は、HttpClientModuleではなくHttpClientTestingModuleを仕様にインポートすることでした。

テストはAPI呼び出しを行おうとしていて、バックエンドから401の応答を受信したときに失敗しました。

7
Mitch McCutchen

この種のエラーは通常、ブラウザに直接スローされます。コンソールにこのメッセージが表示されますが、実際のエラーはブラウザの開発ツールです。それをすばやくチェックして、エラーが発生するかどうかを確認できますか?

それ以外の場合は、どのテストが失敗しているかを示します。このテストを非同期で実行するか、コールバックのパラメーターを使用してください。

it('XXX', done => {
  // do your things then
  done();
});
3
user4676340