24 lines
635 B
TypeScript
24 lines
635 B
TypeScript
|
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({
|
||
|
imports: [HotelDetailsComponent]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
|
||
|
fixture = TestBed.createComponent(HotelDetailsComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|