import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PageAbilityAnalysis } from './page-ability-analysis'; describe('PageAbilityAnalysis', () => { let component: PageAbilityAnalysis; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [PageAbilityAnalysis] }) .compileComponents(); fixture = TestBed.createComponent(PageAbilityAnalysis); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });