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', () => {
12
12
let component : SidebarComponent ;
13
13
let fixture : ComponentFixture < SidebarComponent > ;
14
14
let azureAdB2CServiceStubInjected ;
15
- let featureManagerServiceStubInjected : FeatureManagerService ;
16
15
let userInfoService : UserInfoService ;
17
16
let router ;
18
17
const routes : Routes = [ { path : 'time-clock' , component : TimeClockComponent } ] ;
@@ -47,7 +46,6 @@ describe('SidebarComponent', () => {
47
46
beforeEach ( ( ) => {
48
47
fixture = TestBed . createComponent ( SidebarComponent ) ;
49
48
azureAdB2CServiceStubInjected = TestBed . inject ( AzureAdB2CService ) ;
50
- featureManagerServiceStubInjected = TestBed . inject ( FeatureManagerService ) ;
51
49
userInfoService = TestBed . inject ( UserInfoService ) ;
52
50
component = fixture . componentInstance ;
53
51
fixture . detectChanges ( ) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ export class SidebarComponent implements OnInit, OnDestroy {
29
29
ngOnInit ( ) : void {
30
30
this . toggleSideBar ( ) ;
31
31
this . sidebarItems$ = this . getSidebarItems ( ) . subscribe ( ) ;
32
- // this.toggleListTechnologies(this.itemsSidebar);
33
32
this . highlightMenuOption ( this . router . routerState . snapshot . url ) ;
34
33
this . navStart . subscribe ( ( evt ) => {
35
34
this . highlightMenuOption ( evt . url ) ;
You can’t perform that action at this time.
0 commit comments