style: format code for better readability and consistency #13

Merged
rajukottedi merged 2 commits from develop into prod 2026-03-06 12:53:22 +05:30
Showing only changes of commit 37d7df2794 - Show all commits

View File

@ -8,12 +8,12 @@ import { provideHttpClientTesting } from '@angular/common/http/testing';
declare const beforeEach: (fn: () => void) => void; declare const beforeEach: (fn: () => void) => void;
getTestBed().initTestEnvironment( getTestBed().initTestEnvironment(
BrowserTestingModule, BrowserTestingModule,
platformBrowserTesting() platformBrowserTesting()
); );
beforeEach(() => { beforeEach(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
providers: [provideZonelessChangeDetection(), provideHttpClient(), provideHttpClientTesting()] providers: [provideZonelessChangeDetection(), provideHttpClient(), provideHttpClientTesting()]
}); });
}); });