tenant details form

This commit is contained in:
2021-08-30 19:00:27 +02:00
parent 829aefc514
commit af0e4ffd74
10 changed files with 250 additions and 3 deletions

View File

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