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
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
In v0.10, write() and end() callbacks might be called after the finish event was emitted. In your test, it actually is emitting finish, but it's waiting until the next tick, since a write() operation is still potentially pending completion.
In node 0.10.17:
in node 0.11.6:
Note that removing the
preview.write()
statement fixes the issue.The text was updated successfully, but these errors were encountered: