Yasemin ile birim testlerimi yapıyorum ve şubeyle ilgili bir sorum var.Kuruculardaki şubeler kapsanmadı
Kod bölümünün neden görebildiğimiz gibi dalların kaplanmadığını gösterdiğinin farkında olan var mı? Ne yazık ki köşeli bir hata olduğunu ben açısal 4'e benim projelerini yükseltilmiş andan itibaren aydır aynı sorunu yaşadım
describe('MyComponent',() => {
let component: MyComponent;
let fixture: ComponentFixture<MyComponent>;
let myService: MyService;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MyComponent ],
imports: [ MaterializeModule, FormsModule, ReactiveFormsModule, HttpModule ],
providers: [
MyService,
FormBuilder
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MyComponent);
component = fixture.componentInstance;
slotsService = TestBed.get(MyService);
fixture.detectChanges();
});
function updateForm(name, surname) {
component.myForm.controls['name'].setValue(name);
component.myForm.controls['surname'].setValue(name);
}
it('should create',() => {
expect(component).toBeTruthy();
});
}
Bana verilen bağlantı sorunu çözebilir aynı sorunu –