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