From 37d7df279477a196d447c3c4e2dd2e4903e89ccc Mon Sep 17 00:00:00 2001 From: Bangara Raju Kottedi Date: Fri, 6 Mar 2026 12:39:31 +0530 Subject: [PATCH] style: format code for better readability and consistency --- src/test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test.ts b/src/test.ts index 620cef3..04def99 100644 --- a/src/test.ts +++ b/src/test.ts @@ -8,12 +8,12 @@ import { provideHttpClientTesting } from '@angular/common/http/testing'; declare const beforeEach: (fn: () => void) => void; getTestBed().initTestEnvironment( - BrowserTestingModule, - platformBrowserTesting() + BrowserTestingModule, + platformBrowserTesting() ); beforeEach(() => { - TestBed.configureTestingModule({ - providers: [provideZonelessChangeDetection(), provideHttpClient(), provideHttpClientTesting()] - }); + TestBed.configureTestingModule({ + providers: [provideZonelessChangeDetection(), provideHttpClient(), provideHttpClientTesting()] + }); });