24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
|
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();
|
||
|
});
|
||
|
});
|