@@ -115,7 +115,7 @@ describe('desktop-trampoline', () => {
115
115
expect ( output . at ( - 1 ) ) . toBe ( '' )
116
116
} )
117
117
118
- it ( " askpass handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var" , async ( ) => {
118
+ it ( ' askpass handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var' , async ( ) => {
119
119
const [ portPromise , outputPromise ] = captureSession ( )
120
120
const port = await portPromise
121
121
@@ -132,7 +132,7 @@ describe('desktop-trampoline', () => {
132
132
expect ( outputEnv ) . toContain ( 'DESKTOP_TRAMPOLINE_IDENTIFIER=ASKPASS' )
133
133
} )
134
134
135
- it ( " credential handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var" , async ( ) => {
135
+ it ( ' credential handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var' , async ( ) => {
136
136
const [ portPromise , outputPromise ] = captureSession ( )
137
137
const port = await portPromise
138
138
@@ -146,6 +146,8 @@ describe('desktop-trampoline', () => {
146
146
const output = await outputPromise
147
147
const envc = parseInt ( output [ 2 ] )
148
148
const outputEnv = output . slice ( 3 , 3 + envc )
149
- expect ( outputEnv ) . toContain ( 'DESKTOP_TRAMPOLINE_IDENTIFIER=CREDENTIALHELPER' )
149
+ expect ( outputEnv ) . toContain (
150
+ 'DESKTOP_TRAMPOLINE_IDENTIFIER=CREDENTIALHELPER'
151
+ )
150
152
} )
151
153
} )
0 commit comments