mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-09 11:12:01 +00:00

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