import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { CheckinDeskComponent } from './checkin-desk.component'; describe('CheckinDeskComponent', () => { let component: CheckinDeskComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ CheckinDeskComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CheckinDeskComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });