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