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