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