blob: f43cb6a593d42c181b7d37781765c18f53381f1a [file] [log] [blame]
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { KeyValuePairsComponent } from './key-value-pairs.component';
describe('KeyValuePairsComponent', () => {
let component: KeyValuePairsComponent;
let fixture: ComponentFixture<KeyValuePairsComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [KeyValuePairsComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(KeyValuePairsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});