mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-16 09:21:30 +00:00
22 lines
588 B
TypeScript
22 lines
588 B
TypeScript
![]() |
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { QuickstartComponent } from './quickstart.component';
|
||
|
|
||
|
describe('QuickstartComponent', () => {
|
||
|
let component: QuickstartComponent;
|
||
|
let fixture: ComponentFixture<QuickstartComponent>;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [QuickstartComponent],
|
||
|
});
|
||
|
fixture = TestBed.createComponent(QuickstartComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|