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