@@ -65,7 +65,7 @@ describe('Feature: Command Line Arguments Parsing', () => {
65
65
66
66
// Then the custom header should be correctly parsed
67
67
expect ( result . serverUrl ) . toBe ( 'https://example.com/sse' )
68
- expect ( result . headers ) . toEqual ( { foo : ' taz' } )
68
+ expect ( result . headers ) . toEqual ( { foo : 'taz' } )
69
69
} )
70
70
71
71
it ( 'Scenario: Parse multiple custom headers' , async ( ) => {
@@ -79,8 +79,8 @@ describe('Feature: Command Line Arguments Parsing', () => {
79
79
// Then all custom headers should be correctly parsed
80
80
expect ( result . serverUrl ) . toBe ( 'https://example.com/sse' )
81
81
expect ( result . headers ) . toEqual ( {
82
- Authorization : ' Bearer token123' ,
83
- 'Content-Type' : ' application/json' ,
82
+ Authorization : 'Bearer token123' ,
83
+ 'Content-Type' : 'application/json' ,
84
84
} )
85
85
} )
86
86
@@ -132,7 +132,7 @@ describe('Feature: Command Line Arguments Parsing', () => {
132
132
// Then all arguments should be correctly parsed including HTTP URL acceptance
133
133
expect ( result . serverUrl ) . toBe ( 'http://example.com/sse' )
134
134
expect ( result . callbackPort ) . toBe ( 4000 )
135
- expect ( result . headers ) . toEqual ( { Authorization : ' Bearer abc123' } )
135
+ expect ( result . headers ) . toEqual ( { Authorization : 'Bearer abc123' } )
136
136
} )
137
137
138
138
it ( 'Scenario: Use default transport strategy when not specified' , async ( ) => {
0 commit comments