ESLint: fix dangling commas

This commit is contained in:
Yury Bondarenko
2023-06-27 16:23:06 +02:00
parent 725dbc3743
commit 917c36dbe7
1789 changed files with 12452 additions and 12452 deletions

View File

@@ -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();
});