`syscall.StartProcess` Support
linden opened this issue · 0 comments
linden commented
unlike most syscalls which call node's fs
and process
packages, syscall.StartProcess
is a stub so we can't simply mock the node packages (like #1).
until either Go implements a call from syscall.StartProcess
to node or we find a way to overwrite the function as //go:linkname
used to do, this is blocked.