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