forms/client/src/app/inputs/multi-line/multi-line.component.spec.ts
Naomi Carrigan f2c6d6d3ef
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
feat: resolve lint/build/test errors
2025-02-17 11:48:46 -08:00

29 lines
791 B
TypeScript

/**
* @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<MultiLineComponent>;
beforeEach(async() => {
await TestBed.configureTestingModule({
imports: [ MultiLineComponent, ReactiveFormsModule ],
}).
compileComponents();
fixture = TestBed.createComponent(MultiLineComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("should create", () => {
expect(component).toBeTruthy();
});
});