more details pages

This commit is contained in:
2021-09-02 15:50:29 +02:00
parent ce4ff75bca
commit 7c180f0986
16 changed files with 348 additions and 24 deletions

View File

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ParkingDetailsComponent } from './parking-details.component';
describe('ParkingDetailsComponent', () => {
let component: ParkingDetailsComponent;
let fixture: ComponentFixture<ParkingDetailsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ParkingDetailsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ParkingDetailsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});