Skip to content

Commit fd06e4c

Browse files
niiksergiou87
andcommitted
Liiint
Co-Authored-By: Sergio Padrino <[email protected]>
1 parent 458f595 commit fd06e4c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/desktop-trampoline.test.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ describe('desktop-trampoline', () => {
115115
expect(output.at(-1)).toBe('')
116116
})
117117

118-
it("askpass handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var", async () => {
118+
it('askpass handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var', async () => {
119119
const [portPromise, outputPromise] = captureSession()
120120
const port = await portPromise
121121

@@ -132,7 +132,7 @@ describe('desktop-trampoline', () => {
132132
expect(outputEnv).toContain('DESKTOP_TRAMPOLINE_IDENTIFIER=ASKPASS')
133133
})
134134

135-
it("credential handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var", async () => {
135+
it('credential handler ignores the DESKTOP_TRAMPOLINE_IDENTIFIER env var', async () => {
136136
const [portPromise, outputPromise] = captureSession()
137137
const port = await portPromise
138138

@@ -146,6 +146,8 @@ describe('desktop-trampoline', () => {
146146
const output = await outputPromise
147147
const envc = parseInt(output[2])
148148
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+
)
150152
})
151153
})

0 commit comments

Comments
 (0)