mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-06 19:06:45 +00:00
26 lines
688 B
TypeScript
26 lines
688 B
TypeScript
![]() |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ChangesComponent } from './changes.component';
|
||
|
|
||
|
describe('ChangesComponent', () => {
|
||
|
let component: ChangesComponent;
|
||
|
let fixture: ComponentFixture<ChangesComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ChangesComponent],
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(ChangesComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|