import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { LaneSearchComponent } from './lane-search.component';

describe('LaneSearchComponent', () => {
  let component: LaneSearchComponent;
  let fixture: ComponentFixture<LaneSearchComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ LaneSearchComponent ]
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(LaneSearchComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should be created', () => {
    expect(component).toBeTruthy();
  });
});
