argos/dmp-admin/src/app/datasets-viewer/datasets-viewer.component.s...

26 lines
689 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DatasetsViewerComponent } from './datasets-viewer.component';
describe('DatasetsViewerComponent', () => {
let component: DatasetsViewerComponent;
let fixture: ComponentFixture<DatasetsViewerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ DatasetsViewerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(DatasetsViewerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});