You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the error with redirecting stdout to a file on Windows
Without this fix a command like `test262-harness > test.log` leads to this
```
d:\project\node_modules\test262-harness\lib\simpleReporter.js:38
process.stdout.clearLine();
^
TypeError: process.stdout.clearLine is not a function
at Stream.<anonymous> (d:\project\node_modules\test262-harness\lib\simpleReporter.js:38:20)
at Stream.stream.write (d:\project\node_modules\test262-harness\node_modules\through\index.js:2
6:11)
at d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:882:23
at Stream.s._send (d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:1
139:9)
at Stream.write (d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:122
0:18)
at Stream._send (d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:657
:32)
at Stream.write (d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:122
0:18)
at Stream._generator_push (d:\project\node_modules\test262-harness\node_modules\highland\lib\in
dex.js:489:18)
at d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:3476:21
at d:\project\node_modules\test262-harness\node_modules\highland\lib\index.js:1173:9
```
0 commit comments