import { ComponentFixture, TestBed } from '@angular/core/testing'; import { KeyValueHolderComponent } from './key-value-holder.component'; describe('KeyValueHolderComponent', () => { let component: KeyValueHolderComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ KeyValueHolderComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(KeyValueHolderComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });