Files
hv2-all-in-one/ui/hv2-ui/src/app/my-tenants/my-tenants.component.spec.ts

26 lines
648 B
TypeScript

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