zitadel/console/src/app/modules/org-context/org-context.component.spec.ts

27 lines
682 B
TypeScript
Raw Normal View History

2021-12-10 16:14:24 +01:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { OrgContextComponent } from './org-context.component';
describe('OrgContextComponent', () => {
let component: OrgContextComponent;
let fixture: ComponentFixture<OrgContextComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [OrgContextComponent],
}).compileComponents();
}),
);
beforeEach(() => {
fixture = TestBed.createComponent(OrgContextComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});