mirror of https://github.com/actions/toolkit
Fix missing typescript casts
parent
56c460630a
commit
6b18932b86
|
@ -22,7 +22,7 @@ describe('@actions/github', () => {
|
|||
proxyServer.listen(port, () => resolve())
|
||||
})
|
||||
proxyServer.on('connect', req => {
|
||||
proxyConnects.push(req.url)
|
||||
proxyConnects.push(req.url ?? '')
|
||||
})
|
||||
})
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ describe('@actions/github', () => {
|
|||
proxyServer.listen(port, () => resolve(null))
|
||||
})
|
||||
proxyServer.on('connect', req => {
|
||||
proxyConnects.push(req.url)
|
||||
proxyConnects.push(req.url ?? '')
|
||||
})
|
||||
})
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ describe('proxy', () => {
|
|||
_proxyServer.listen(port, () => resolve())
|
||||
})
|
||||
_proxyServer.on('connect', req => {
|
||||
_proxyConnects.push(req.url)
|
||||
_proxyConnects.push(req.url ?? '')
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue