generated from nhcarrigan/template
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
29 lines
791 B
TypeScript
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();
|
|
});
|
|
});
|