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