Fix flakey test (#817)

This commit is contained in:
Luke Tomlinson
2021-05-21 15:32:09 -04:00
committed by GitHub
parent ddd04b6997
commit 9ac66375a0
2 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
//first half of © character
process.stdout.write(Buffer.from([0xC2]), (err) => {
//write in the callback so that the second byte is sent separately
process.stdout.write(Buffer.from([0xA9])) //second half of © character
setTimeout(() => {
process.stdout.write(Buffer.from([0xA9])) //second half of © character
}, 5000)
})

View File

@@ -82,7 +82,6 @@ export async function getExecOutput(
stdout += stdoutDecoder.end()
stderr += stderrDecoder.end()
//return undefined for stdout/stderr if they are empty
return {
exitCode,
stdout,