@@ -171,7 +171,7 @@ test('Load profiles with string content', (t) => {
171
171
const profile = ClientConfigProfile . load ( { configSource : dataSource ( stringContent ) } ) ;
172
172
t . is ( profile . address , 'default-address' ) ;
173
173
t . is ( profile . namespace , 'default-namespace' ) ;
174
-
174
+
175
175
// Test with custom profile from string
176
176
const profileCustom = ClientConfigProfile . load ( {
177
177
profile : 'custom' ,
@@ -272,7 +272,7 @@ test('Load profiles without profile-level env overrides', (t) => {
272
272
overrideEnvVars : env ,
273
273
} ) ;
274
274
t . is ( conf . profiles [ 'default' ] . address , 'default-address' ) ;
275
-
275
+
276
276
// Test that profile-level loading with disableEnv ignores environment
277
277
const profile = ClientConfigProfile . load ( {
278
278
configSource : pathSource ( filepath ) ,
@@ -710,7 +710,7 @@ test('Create client from custom profile with TLS options', async (t) => {
710
710
t . true ( ! ! profile . tls ?. disabled ) ;
711
711
712
712
const { connectionOptions, namespace } = profile . toClientConnectConfig ( ) ;
713
-
713
+
714
714
// Verify API key is present but TLS is disabled for local testing
715
715
t . is ( connectionOptions . apiKey , 'prod-api-key-12345' ) ;
716
716
t . is ( connectionOptions . tls , undefined ) ; // disabled = true results in undefined
@@ -841,4 +841,4 @@ test('Create clients from multi-profile config', async (t) => {
841
841
} finally {
842
842
await env . teardown ( ) ;
843
843
}
844
- } ) ;
844
+ } ) ;
0 commit comments