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