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