mirror of
https://github.com/actions/toolkit
synced 2025-05-09 16:43:02 +00:00
Fix flakey test (#817)
This commit is contained in:
parent
ddd04b6997
commit
9ac66375a0
2 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue