1
0
Fork 0
mirror of https://github.com/actions/toolkit.git synced 2025-06-08 06:27:02 +09:00

Fix missing typescript casts

This commit is contained in:
Ferenc Hammerl 2022-12-14 01:28:46 +01:00
parent 56c460630a
commit 6b18932b86
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ describe('@actions/github', () => {
proxyServer.listen(port, () => resolve())
})
proxyServer.on('connect', req => {
proxyConnects.push(req.url)
proxyConnects.push(req.url ?? '')
})
})

View file

@ -18,7 +18,7 @@ describe('@actions/github', () => {
proxyServer.listen(port, () => resolve(null))
})
proxyServer.on('connect', req => {
proxyConnects.push(req.url)
proxyConnects.push(req.url ?? '')
})
})