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