Skip to content

Commit 6bbaf94

Browse files
committed
fix linting issues
1 parent dab8326 commit 6bbaf94

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

src/app/app.component.spec.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ class MockThemeService {
1717
class MockTitleService {
1818
titleInfo$ = of({
1919
dimension: 'Test Title',
20-
level: '1'
20+
level: '1',
2121
});
2222
}
2323

2424
describe('AppComponent', () => {
25-
2625
let app: AppComponent;
2726
let fixture: ComponentFixture<AppComponent>;
2827

@@ -34,13 +33,13 @@ describe('AppComponent', () => {
3433
MatToolbarModule,
3534
MatIconModule,
3635
MatSidenavModule,
37-
BrowserAnimationsModule
36+
BrowserAnimationsModule,
3837
],
3938
providers: [
4039
{ provide: ThemeService, useClass: MockThemeService },
41-
{ provide: TitleService, useClass: MockTitleService }
40+
{ provide: TitleService, useClass: MockTitleService },
4241
],
43-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
42+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
4443
}).compileComponents();
4544
});
4645

0 commit comments

Comments
 (0)