add new pages

This commit is contained in:
2021-08-30 15:55:08 +02:00
parent 083badeacc
commit 829aefc514
28 changed files with 538 additions and 40 deletions

View File

@ -0,0 +1,25 @@
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();
});
});