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