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