File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ describe('SidebarComponent', () => {
1212 let component : SidebarComponent ;
1313 let fixture : ComponentFixture < SidebarComponent > ;
1414 let azureAdB2CServiceStubInjected ;
15- let featureManagerServiceStubInjected : FeatureManagerService ;
1615 let userInfoService : UserInfoService ;
1716 let router ;
1817 const routes : Routes = [ { path : 'time-clock' , component : TimeClockComponent } ] ;
@@ -47,7 +46,6 @@ describe('SidebarComponent', () => {
4746 beforeEach ( ( ) => {
4847 fixture = TestBed . createComponent ( SidebarComponent ) ;
4948 azureAdB2CServiceStubInjected = TestBed . inject ( AzureAdB2CService ) ;
50- featureManagerServiceStubInjected = TestBed . inject ( FeatureManagerService ) ;
5149 userInfoService = TestBed . inject ( UserInfoService ) ;
5250 component = fixture . componentInstance ;
5351 fixture . detectChanges ( ) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ export class SidebarComponent implements OnInit, OnDestroy {
2929 ngOnInit ( ) : void {
3030 this . toggleSideBar ( ) ;
3131 this . sidebarItems$ = this . getSidebarItems ( ) . subscribe ( ) ;
32- // this.toggleListTechnologies(this.itemsSidebar);
3332 this . highlightMenuOption ( this . router . routerState . snapshot . url ) ;
3433 this . navStart . subscribe ( ( evt ) => {
3534 this . highlightMenuOption ( evt . url ) ;
You can’t perform that action at this time.
0 commit comments