From 4bc377e1b476910850a781786d77e013468722b6 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Mon, 8 Dec 2025 12:47:19 +0000 Subject: [PATCH] Timeout time back to normal, as it was like this for debugging --- packages/exec/__tests__/scripts/stdoutputspecial.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/exec/__tests__/scripts/stdoutputspecial.js b/packages/exec/__tests__/scripts/stdoutputspecial.js index 95f0ff42..6a641cd0 100644 --- a/packages/exec/__tests__/scripts/stdoutputspecial.js +++ b/packages/exec/__tests__/scripts/stdoutputspecial.js @@ -1,8 +1,8 @@ //first half of © character -process.stdout.write(Buffer.from([0xC2]), () => { +process.stdout.write(Buffer.from([0xC2]), (err) => { //write in the callback so that the second byte is sent separately setTimeout(() => { process.stdout.write(Buffer.from([0xA9])) //second half of © character - }, 100) + }, 5000) })