mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-06 12:46:47 +00:00

* update core / cli * update material * lint * replace nx-moment with @angular/moment adapter
26 lines
702 B
TypeScript
26 lines
702 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
import { ChangesComponent } from './changes.component';
|
|
|
|
describe('ChangesComponent', () => {
|
|
let component: ChangesComponent;
|
|
let fixture: ComponentFixture<ChangesComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ChangesComponent],
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ChangesComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|