Spec has no expectation console error although expect is present
问题 I have the spec that has to expect still it says there are no expectations... it('should click on yes button of technician and check save&continue functionality', () => { const saveAndContinue = fixture.debugElement.query(By.css(saveContinueBtn)).nativeElement; saveAndContinue.click(); fixture.detectChanges(); fixture.whenStable().then(() => { const spy = spyOn(component, 'isSaveAndContinueClicked').and.callThrough(); expect(component).toBeDefined(); expect(spy); component