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.