| 123456789101112131415161718192021 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { ReservationViewComponent } from './reservation-view.component';
- describe('ReservationViewComponent', () => {
- let component: ReservationViewComponent;
- let fixture: ComponentFixture<ReservationViewComponent>;
- beforeEach(() => {
- TestBed.configureTestingModule({
- declarations: [ReservationViewComponent]
- });
- fixture = TestBed.createComponent(ReservationViewComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|