22 Aug
2024
22 Aug
'24
4:44 p.m.
Jacek Caban (@jacek) commented about programs/wscript/tests/run.js:
WScript.Interactive = true; ok(WScript.Interactive === true, "WScript.Interactive = " + WScript.Interactive); ok(WScript.Application === WScript, "WScript.Application = " + WScript.Application); +ok(WScript.Sleep(0), "Sleep(0)"); `Sleep` doesn't return value, so that would be `=== undefined` (or you could just drop `ok()` and just call it; it would be enough to ensure that there is no exception). Also please squash those commits into a single commit.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6342#note_79676