import {ComponentFixture, TestBed} from "@angular/core/testing"; import {RepositoryFormComponent} from "./repository-form.component"; describe("RepositoryFormComponent", () => { let component: RepositoryFormComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [RepositoryFormComponent] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(RepositoryFormComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it("should create", () => { expect(component).toBeTruthy(); }); });