mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-04 11:40:47 +00:00

* feat: show available orgs (project) grants * feat: add e2e for project grant * feat: add bulgarian missing translations * feat: update docs * fix: add @peintnermax suggested changes --------- Co-authored-by: Max Peintner <max@caos.ch>
25 lines
731 B
TypeScript
25 lines
731 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
import { SearchOrgAutocompleteComponent } from './search-org-autocomplete.component';
|
|
|
|
describe('SearchOrgComponent', () => {
|
|
let component: SearchOrgAutocompleteComponent;
|
|
let fixture: ComponentFixture<SearchOrgAutocompleteComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [SearchOrgAutocompleteComponent],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SearchOrgAutocompleteComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|