import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TenantSearchComponent } from './tenant-search.component'; describe('Organization::TenantSearchComponent', () => { let component: TenantSearchComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [TenantSearchComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TenantSearchComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });