Skip to content
Snippets Groups Projects
navigation.component.spec.ts 650 B
Newer Older
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { NavigationComponent } from './navigation.component';

describe('NavigationComponent', () => {
  let component: NavigationComponent;
  let fixture: ComponentFixture<NavigationComponent>;
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [NavigationComponent],
    }).compileComponents();
  }));
  beforeEach(() => {
    fixture = TestBed.createComponent(NavigationComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });
  it('should create', () => {
    expect(component).toBeTruthy();
  });
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
});