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