2020-11-16 16:54:37 +01:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
2020-09-11 09:57:08 +02:00
|
|
|
|
|
|
|
import { ShowKeyDialogComponent } from './show-key-dialog.component';
|
|
|
|
|
|
|
|
describe('ShowKeyDialogComponent', () => {
|
|
|
|
let component: ShowKeyDialogComponent;
|
|
|
|
let fixture: ComponentFixture<ShowKeyDialogComponent>;
|
|
|
|
|
2020-11-16 16:54:37 +01:00
|
|
|
beforeEach(waitForAsync(() => {
|
2020-09-11 09:57:08 +02:00
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [ShowKeyDialogComponent],
|
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(ShowKeyDialogComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|