/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { type ComponentFixture, TestBed } from "@angular/core/testing"; import { ReactiveFormsModule } from "@angular/forms"; import { MultiLineComponent } from "./multi-line.component"; describe("MultiLineComponent", () => { let component: MultiLineComponent; let fixture: ComponentFixture; beforeEach(async() => { await TestBed.configureTestingModule({ imports: [ MultiLineComponent, ReactiveFormsModule ], }). compileComponents(); fixture = TestBed.createComponent(MultiLineComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it("should create", () => { expect(component).toBeTruthy(); }); });