mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-09 10:22:56 +00:00

* feature settings * feature component, i18n * i18n, save settings * i18n * reset button, state if system inherited, i18n * iam.restrictions.read * refetch feature after reset * use toggles instead of checkboxes * i18n * rm logs * fix i18n * show unspecified as inherited --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
25 lines
650 B
TypeScript
25 lines
650 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
import { FeaturesComponent } from './features.component';
|
|
|
|
describe('FeaturesComponent', () => {
|
|
let component: FeaturesComponent;
|
|
let fixture: ComponentFixture<FeaturesComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [FeaturesComponent],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(FeaturesComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|