2024-11-12 09:18:15 +01:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { HotelDetailsComponent } from './hotel-details.component';
|
|
|
|
|
|
|
|
describe('HotelDetailsComponent', () => {
|
|
|
|
let component: HotelDetailsComponent;
|
|
|
|
let fixture: ComponentFixture<HotelDetailsComponent>;
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
await TestBed.configureTestingModule({
|
2025-01-28 08:27:37 +01:00
|
|
|
imports: [HotelDetailsComponent],
|
|
|
|
}).compileComponents();
|
2024-11-12 09:18:15 +01:00
|
|
|
|
|
|
|
fixture = TestBed.createComponent(HotelDetailsComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|