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