Как прочитать свойства формы, управляемые шаблоном, в тесте jasmine в angular
#angular #unit-testing #jasmine #angular-forms Вопрос: У меня есть форма ниже в test.html шаблон. <form (ngSubmit)='onSubmit()' #testForm='ngForm'> ниже приведен мой код test.ts @ViewChild('testForm' {static: false}) testForm: NgForm; async onSubmit() { if(this.testForm.valid)…