is-monitor/is-monitor-frontend/src/app/resource-list/resource-list.component.spe...

26 lines
671 B
TypeScript

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