Ошибка запуска Jest-тестов после обновления до Angular 9: TypeError: Невозможно прочитать свойство 'ngModule' из неопределенного - PullRequest
0 голосов
/ 08 апреля 2020

Я обновил с Angular 8,2 до Angular 9. Мой проект работает должным образом, как и сборка, однако многие тесты не выполняются с этой ошибкой:

TypeError: Cannot read property 'ngModule' of undefined

  at isModuleWithProviders (../packages/core/src/render3/jit/module.ts:530:37)
  at expandModuleWithProviders (../packages/core/src/render3/jit/module.ts:523:7)
      at Array.map (<anonymous>)
  at Function.get (../packages/core/src/render3/jit/module.ts:127:29)
  at getNgModuleDef (../packages/core/src/render3/definition.ts:761:27)
  at isNgModule (../packages/core/src/render3/jit/module.ts:534:12)
  at ../packages/core/src/render3/jit/module.ts:464:10
      at Array.forEach (<anonymous>)
  at transitiveScopesFor (../packages/core/src/render3/jit/module.ts:458:30)
  at setScopeOnDeclaredComponents (../packages/core/src/render3/jit/module.ts:388:28)
  at Object.flushModuleScopingQueueAsMuchAsPossible [as ɵflushModuleScopingQueueAsMuchAsPossible] (../packages/core/src/render3/jit/module.ts:59:11)
  at TestBedRender3.flushModuleScopingQueueAsMuchAsPossible [as checkGlobalCompilationFinished] (../../packages/core/testing/src/r3_test_bed.ts:400:7)
  at TestBedRender3.Object.<anonymous>.TestBedRender3.resetTestingModule (../../packages/core/testing/src/r3_test_bed.ts:231:10)
  at Function.Object.<anonymous>.TestBedRender3.resetTestingModule (../../packages/core/testing/src/r3_test_bed.ts:180:26)
  at ../../packages/core/testing/src/before_each.ts:25:13
  at ZoneDelegate.Object.<anonymous>.ZoneDelegate.invoke (node_modules/zone.js/dist/zone.js:386:30)
  at ProxyZoneSpec.Object.<anonymous>.ProxyZoneSpec.onInvoke (node_modules/zone.js/dist/proxy.js:117:43)
  at ZoneDelegate.Object.<anonymous>.ZoneDelegate.invoke (node_modules/zone.js/dist/zone.js:385:36)
  at Zone.Object.<anonymous>.Zone.run (node_modules/zone.js/dist/zone.js:143:47)

Это Пример очень простого теста, который не проходит:

import { ExampleModule } from './example.module';

describe('ExampleModule', () => {
   let exampleModule: ExampleModule;

  beforeEach(() => {
    exampleModule = new ExampleModule();
  });

  it('should create an instance', () => {
    expect(exampleModule).toBeTruthy();
  });
});

Любая помощь будет оценена. Спасибо.

1 Ответ

0 голосов
/ 10 апреля 2020

В итоге возникла проблема с импортом барреля. Чтобы исправить это, я должен был удалить все импорт стволов и глубоко импортировать все файлы.

пример старого:

import {
  Example1,
  Example2
} from 'path/to/example-folder';

пример нового:

import { Example1 } from 'path/to/example1-file';
import { Example2 } from 'path/to/example2-file';
...