astute/AstuteClient2/src/app/nav-bar/nav-bar.component.spec.ts
Akash Shah 3554518563
Added Astute Client Files
In the AstuteClient2 folder
2018-08-15 14:33:03 -04:00

26 lines
629 B
TypeScript

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