mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
32 lines
914 B
TypeScript
32 lines
914 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
|
import {
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
NG_VALUE_ACCESSOR,
|
|
} from '@angular/forms'
|
|
import { TextAreaComponent } from './textarea.component'
|
|
|
|
describe('TextComponent', () => {
|
|
let component: TextAreaComponent
|
|
let fixture: ComponentFixture<TextAreaComponent>
|
|
let input: HTMLTextAreaElement
|
|
|
|
beforeEach(async () => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [TextAreaComponent],
|
|
providers: [],
|
|
imports: [FormsModule, ReactiveFormsModule],
|
|
}).compileComponents()
|
|
|
|
fixture = TestBed.createComponent(TextAreaComponent)
|
|
fixture.debugElement.injector.get(NG_VALUE_ACCESSOR)
|
|
component = fixture.componentInstance
|
|
fixture.detectChanges()
|
|
input = component.inputField.nativeElement
|
|
})
|
|
|
|
it('should support use of input field', () => {
|
|
expect(component.value).toBeUndefined()
|
|
})
|
|
})
|