File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -337,6 +337,30 @@ async function runTests() {
337
337
"tools/list" ,
338
338
) ;
339
339
340
+ // Test 5b: CLI mode with environment variable containing equals sign in value
341
+ await runBasicTest (
342
+ "env_variable_with_equals" ,
343
+ TEST_CMD ,
344
+ ...TEST_ARGS ,
345
+ "-e" ,
346
+ "API_KEY=abc123=xyz789==" ,
347
+ "--cli" ,
348
+ "--method" ,
349
+ "tools/list" ,
350
+ ) ;
351
+
352
+ // Test 5c: CLI mode with environment variable containing base64-encoded value
353
+ await runBasicTest (
354
+ "env_variable_with_base64" ,
355
+ TEST_CMD ,
356
+ ...TEST_ARGS ,
357
+ "-e" ,
358
+ "JWT_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0=" ,
359
+ "--cli" ,
360
+ "--method" ,
361
+ "tools/list" ,
362
+ ) ;
363
+
340
364
console . log (
341
365
`\n${ colors . YELLOW } === Running Config File Tests ===${ colors . NC } ` ,
342
366
) ;
You can’t perform that action at this time.
0 commit comments