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