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