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