mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-01 22:10:52 +00:00
26 lines
732 B
TypeScript
26 lines
732 B
TypeScript
![]() |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ShowKeyDialogComponent } from './show-key-dialog.component';
|
||
|
|
||
|
describe('ShowKeyDialogComponent', () => {
|
||
|
let component: ShowKeyDialogComponent;
|
||
|
let fixture: ComponentFixture<ShowKeyDialogComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ShowKeyDialogComponent],
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(ShowKeyDialogComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|