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