Skip to content
Snippets Groups Projects
Commit 8b283c77 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add input

parent 58650c8e
No related branches found
No related tags found
1 merge request!543V19
......@@ -22,9 +22,14 @@ describe('FaultControlComponent', () => {
fixture = TestBed.createComponent(FaultControlComponent);
component = fixture.componentInstance;
component.control = new FormControl(0, {
nonNullable: true,
});
fixture.componentRef.setInput(
'control',
new FormControl(0, {
nonNullable: true,
}),
);
fixture.detectChanges();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment