Files
WrenchBoardIonic2023/src/app/components/pending-suggested/pending-suggested.component.spec.ts
T
CHIEFSOFT\ameye a932344658 approve kids
2023-12-02 10:39:32 -05:00

25 lines
767 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { PendingSuggestedComponent } from './pending-suggested.component';
describe('PendingSuggestedComponent', () => {
let component: PendingSuggestedComponent;
let fixture: ComponentFixture<PendingSuggestedComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ PendingSuggestedComponent ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(PendingSuggestedComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});