Home > Software engineering >  angular testing Cannot find name 'ViewChildren'
angular testing Cannot find name 'ViewChildren'

Time:11-30

when I testing angular component, but console error angualr version: 8 UI: ng-zorro-antd 8

enter image description here

CodePudding user response:

may be you're missing this

import {ViewChildren} from '@angular/core';
  • Related