mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-07 07:16:54 +00:00
25 lines
764 B
TypeScript
25 lines
764 B
TypeScript
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||
|
|
|
||
|
|
import { PasswordComplexityPolicyComponent } from './password-complexity-policy.component';
|
||
|
|
|
||
|
|
describe('PasswordComplexityPolicyComponent', () => {
|
||
|
|
let component: PasswordComplexityPolicyComponent;
|
||
|
|
let fixture: ComponentFixture<PasswordComplexityPolicyComponent>;
|
||
|
|
|
||
|
|
beforeEach(waitForAsync(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
declarations: [PasswordComplexityPolicyComponent],
|
||
|
|
}).compileComponents();
|
||
|
|
}));
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
fixture = TestBed.createComponent(PasswordComplexityPolicyComponent);
|
||
|
|
component = fixture.componentInstance;
|
||
|
|
fixture.detectChanges();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should create', () => {
|
||
|
|
expect(component).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|