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