zitadel/console/src/app/modules/changes/changes.component.spec.ts
Max Peintner e8db038839
feat(console): angular 11, replace ngx-moment with @angular/material-moment-adapter (#965)
* update core / cli

* update material

* lint

* replace nx-moment with @angular/moment adapter
2020-11-16 16:54:37 +01:00

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();
});
});