This website requires JavaScript.
Explore
Help
Sign In
Nodejs
/
node
Watch
1
Star
0
Fork
0
You've already forked node
mirror of
https://github.com/nodejs/node.git
synced
2024-11-21 10:59:27 +00:00
Code
Issues
Actions
25
Packages
Projects
Releases
Wiki
Activity
main
node
/
test
/
pseudo-tty
/
test-tty-stdout-end.js
5 lines
59 B
JavaScript
Raw
Permalink
Normal View
History
Unescape
Escape
test: enable linting for tests Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-05-19 11:00:06 +00:00
'use strict'
;
test: remove unused uncaughtException handler This has been unused since cbc3ef64ceaf95ec1. Refs: https://github.com/nodejs/node/pull/23053 PR-URL: https://github.com/nodejs/node/pull/25641 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
2019-01-22 15:48:45 +00:00
require
(
'../common'
)
;
stream: add destroy and _destroy methods. Adds destroy() and _destroy() methods to Readable, Writable, Duplex and Transform. It also standardizes the behavior and the implementation of destroy(), which has been inconsistent in userland and core. This PR also updates all the subsystems of core to use the new destroy(). PR-URL: https://github.com/nodejs/node/pull/12925 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Calvin Metcalf <calvin.metcalf@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2017-05-06 12:20:52 +00:00
process
.
stdout
.
end
(
)
;
Reference in New Issue
Copy Permalink