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

@ -19,7 +19,7 @@ describe('proxy', () => {
_proxyServer.listen(port, () => resolve())
})
_proxyServer.on('connect', req => {
_proxyConnects.push(req.url)
_proxyConnects.push(req.url ?? '')
})
})