src/app/statistics/resources/resource-detail/resource-detail.component.spec.ts
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ResourceDetailComponent } from './resource-detail.component';
describe('ResourceDetailComponent', () => {
let component: ResourceDetailComponent;
let fixture: ComponentFixture<ResourceDetailComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ResourceDetailComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ResourceDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});