mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 19:43:04 +00:00
ESLint: fix dangling commas
This commit is contained in:
@@ -13,7 +13,7 @@ describe('ContextHelpToggleComponent', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
contextHelpService = jasmine.createSpyObj('contextHelpService', [
|
||||
'tooltipCount$', 'toggleIcons'
|
||||
'tooltipCount$', 'toggleIcons',
|
||||
]);
|
||||
contextHelpService.tooltipCount$.and.returnValue(observableOf(0));
|
||||
await TestBed.configureTestingModule({
|
||||
@@ -21,7 +21,7 @@ describe('ContextHelpToggleComponent', () => {
|
||||
providers: [
|
||||
{ provide: ContextHelpService, useValue: contextHelpService },
|
||||
],
|
||||
imports: [ TranslateModule.forRoot() ]
|
||||
imports: [ TranslateModule.forRoot() ],
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
Reference in New Issue
Block a user