src/app/manager-dashboard/manager-dashboard.component.spec.ts
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ManagerDashboardComponent } from './manager-dashboard.component';
import { of } from 'rxjs/observable/of';
describe('ManagerDashboardComponent', () => {
let component: ManagerDashboardComponent;
let fixture: ComponentFixture<ManagerDashboardComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ManagerDashboardComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ManagerDashboardComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});