mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-09 11:12:01 +00:00
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();
|
||
|
});
|
||
|
});
|