22 lines
610 B
TypeScript
22 lines
610 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();
|
|
});
|
|
});
|