fix(tests): possible fix failing spawn test on windows

This commit is contained in:
Erica Marigold 2023-09-30 15:51:47 +05:30 committed by GitHub
parent 9bc39d3aef
commit b231417cf6
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,6 +169,6 @@ local stdinChild = process.spawn((((not IS_WINDOWS) and "xargs") or "powershell"
})
assert(
stdinChild.stdout == (echoMessage .. "\n"), -- Note that echo adds a newline
stdinChild.stdout == (((IS_WINDOWS and `{string.char(239)}{string.char(191)}`) or "") .. echoMessage .. "\n"), -- Windows "echo" adds these "escape codes" to strings
"Stdin passing did not return proper output"
)