1
0
Fork 0
mirror of https://github.com/actions/toolkit synced 2025-05-09 00:22:56 +00: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

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