feat: add hotel details and list components with routing

This commit is contained in:
Jan K9f 2024-11-12 09:18:15 +01:00
parent d773cfe4bf
commit 8dd8b8b438
Signed by: jank
GPG key ID: B267751B8AE29EFE
15 changed files with 181 additions and 66 deletions

View file

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