is-monitor/is-monitor-frontend/src/app/resource-details/resource-details.component....

26 lines
692 B
TypeScript

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