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