node/test/parallel
Christopher Luke f5a702e763 stream: Fixes missing 'unpipe' event
Currently when the destination emits an 'error', 'finish' or 'close'
event the pipe calls unpipe to emit 'unpipe' and trigger the clean up
of all it's listeners.
When the source emits an 'end' event without {end: false} it calls
end() on the destination leading it to emit a 'close', this will again
lead to the pipe calling unpipe. However the source emitting an 'end'
event along side {end: false} is the only time the cleanup gets ran
directly without unpipe being called. This fixes that so the 'unpipe'
event does get emitted and cleanup in turn gets ran by that event.

Fixes: https://github.com/nodejs/node/issues/11837
PR-URL: https://github.com/nodejs/node/pull/11876
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2017-05-02 20:41:22 -05:00
..
parallel.status test: fix flaky child-process-exec-kill-throws 2017-04-10 13:22:59 -04:00
test-arm-math-exp-regress-1376.js
test-assert-typedarray-deepequal.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-assert.js test: improve test-assert.js 2017-02-14 11:52:36 -05:00
test-async-wrap-check-providers.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-async-wrap-disabled-propagate-parent.js
test-async-wrap-post-did-throw.js
test-async-wrap-propagate-parent.js
test-async-wrap-throw-from-callback.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-async-wrap-throw-no-init.js
test-async-wrap-uid.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-bad-unicode.js
test-beforeexit-event-exit.js test: refactor test-beforeexit-event-exit.js 2017-01-30 12:08:33 -05:00
test-benchmark-crypto.js test: add test-benchmark-crypto 2017-05-02 12:46:09 -05:00
test-buffer-alloc.js src: fix base64 decoding 2017-04-10 13:23:03 -04:00
test-buffer-arraybuffer.js test: increase coverage for buffer.js 2017-05-02 12:46:13 -05:00
test-buffer-ascii.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-buffer-bad-overload.js
test-buffer-badhex.js
test-buffer-bindingobj-no-zerofill.js test: fix allocUnsafe uninitialized buffer check 2017-05-02 12:46:08 -05:00
test-buffer-bytelength.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-buffer-compare-offset.js test: increase coverage of buffer 2017-02-21 21:14:21 -05:00
test-buffer-compare.js
test-buffer-concat.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-buffer-copy.js doc,test: args to buffer.copy can be Uint8Arrays 2017-02-24 02:16:27 +01:00
test-buffer-equals.js
test-buffer-failed-alloc-typed-arrays.js
test-buffer-fakes.js
test-buffer-fill.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-buffer-includes.js test: fix broken tests in test-buffer-includes 2017-03-28 19:26:57 -04:00
test-buffer-indexof.js test: update Buffer.lastIndexOf 2017-01-30 12:08:56 -05:00
test-buffer-inheritance.js
test-buffer-inspect.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-buffer-isencoding.js
test-buffer-iterator.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-buffer-new.js
test-buffer-no-negative-allocation.js
test-buffer-parent-property.js
test-buffer-prototype-inspect.js test: add test-buffer-prototype-inspect 2017-03-05 23:24:29 +01:00
test-buffer-read.js test: consolidate buffer.read() in a file 2017-02-21 21:14:26 -05:00
test-buffer-regression-649.js
test-buffer-safe-unsafe.js
test-buffer-sharedarraybuffer.js
test-buffer-slice.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-buffer-slow.js
test-buffer-swap.js test: use block scoped variable names 2017-05-02 12:46:17 -05:00
test-buffer-tojson.js buffer, test: add tests for buffer.toJSON 2017-02-14 11:52:05 -05:00
test-buffer-tostring-range.js
test-buffer-write-noassert.js src, buffer: do not segfault on out-of-range index 2017-03-28 18:28:53 -04:00
test-buffer-zero-fill-cli.js
test-buffer-zero-fill-reset.js
test-c-ares.js
test-child-process-bad-stdio.js
test-child-process-buffering.js
test-child-process-constructor.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-custom-fds.js
test-child-process-cwd.js
test-child-process-default-options.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-detached.js
test-child-process-disconnect.js
test-child-process-double-pipe.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-env.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-exec-cwd.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-exec-encoding.js test: increase coverage for exec() functions 2017-01-30 12:09:00 -05:00
test-child-process-exec-env.js
test-child-process-exec-error.js
test-child-process-exec-kill-throws.js test: fix flaky child-process-exec-kill-throws 2017-04-10 13:22:59 -04:00
test-child-process-exec-maxBuffer.js
test-child-process-exec-stdout-stderr-data-string.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-exec-timeout.js test: fix flaky test-child-process-exec-timeout 2017-04-10 13:44:34 -04:00
test-child-process-execfile.js test: complete coverage of lib/child_process.js 2017-05-02 12:46:13 -05:00
test-child-process-exit-code.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-flush-stdio.js
test-child-process-fork-and-spawn.js
test-child-process-fork-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-fork-dgram.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-child-process-fork-exec-argv.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-fork-exec-path.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-fork-net.js test: fail when child dies in fork-net 2017-03-20 10:19:16 -04:00
test-child-process-fork-net2.js tools: enable one-var-declaration-per-line ESLint rule 2017-02-22 21:05:18 +01:00
test-child-process-fork-ref.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-child-process-fork-ref2.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-fork-regr-gh-2847.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-fork-stdio.js
test-child-process-fork.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-fork3.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-child-process-internal.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-ipc.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-child-process-kill.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-child-process-recv-handle.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-child-process-send-after-close.js
test-child-process-send-cb.js
test-child-process-send-keep-open.js
test-child-process-send-returns-boolean.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-child-process-send-type-error.js
test-child-process-send-utf8.js test: replace [].join() with ''.repeat() 2017-05-02 12:46:10 -05:00
test-child-process-set-blocking.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-child-process-silent.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-spawn-argv0.js
test-child-process-spawn-error.js
test-child-process-spawn-shell.js test: do not use more command on Windows 2017-03-28 19:06:18 -04:00
test-child-process-spawn-typeerror.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-child-process-spawnsync-env.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-child-process-spawnsync-input.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-spawnsync-kill-signal.js child_process: exit spawnSync with null on signal 2017-02-21 21:14:21 -05:00
test-child-process-spawnsync-maxbuf.js
test-child-process-spawnsync-shell.js test: do not use more command on Windows 2017-03-28 19:06:18 -04:00
test-child-process-spawnsync-timeout.js test: allow for slow hosts in spawnSync() test 2017-01-31 14:09:34 -06:00
test-child-process-spawnsync.js
test-child-process-stdin-ipc.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-stdin.js test: do not use more command on Windows 2017-03-28 19:06:18 -04:00
test-child-process-stdio-big-write-end.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-child-process-stdio-inherit.js test: do not use more command on Windows 2017-03-28 19:06:18 -04:00
test-child-process-stdio.js test: do not use more command on Windows 2017-03-28 19:06:18 -04:00
test-child-process-stdout-flush-exit.js test: use common.fail() instead of assert(false) 2017-01-30 12:08:53 -05:00
test-child-process-stdout-flush.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-child-process-uid-gid.js test: allow testing uid and gid separately 2017-01-27 08:11:52 -05:00
test-child-process-validate-stdio.js
test-cli-eval-event.js
test-cli-eval.js lib: fix event race condition with -e 2017-03-28 19:12:49 -04:00
test-cli-syntax.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-basic.js test: remove common.PORT from test-cluster-basic 2017-05-02 12:46:10 -05:00
test-cluster-bind-privileged-port.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-cluster-bind-twice.js test: use dynamic port in test-cluster-bind-twice 2017-05-02 12:46:12 -05:00
test-cluster-debug-port.js
test-cluster-dgram-1.js test: dynamic port in cluster worker dgram 2017-05-02 12:46:16 -05:00
test-cluster-dgram-2.js test: dynamic port in cluster worker dgram 2017-05-02 12:46:16 -05:00
test-cluster-dgram-reuse.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-disconnect-before-exit.js
test-cluster-disconnect-handles.js cluster: refactor module into multiple files 2017-01-30 12:08:44 -05:00
test-cluster-disconnect-idle-worker.js
test-cluster-disconnect-leak.js test: remove common.PORT from test-cluster*.js 2017-05-02 12:46:11 -05:00
test-cluster-disconnect-race.js test: remove common.PORT from test-cluster*.js 2017-05-02 12:46:11 -05:00
test-cluster-disconnect-suicide-race.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-disconnect-unshared-tcp.js
test-cluster-disconnect-unshared-udp.js
test-cluster-disconnect-with-no-workers.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-disconnect.js test: refactor test-cluster-disconnect 2017-03-28 19:12:50 -04:00
test-cluster-eaccess.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-eaddrinuse.js test: dynamic port in cluster eaddrinuse 2017-05-02 12:46:17 -05:00
test-cluster-fork-env.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-fork-stdio.js
test-cluster-http-pipe.js
test-cluster-inspector-debug-port.js cluster: properly handle --inspect-{brk,port} 2017-02-22 21:05:13 +01:00
test-cluster-invalid-message.js
test-cluster-ipc-throw.js test: dynamic port in cluster ipc throw 2017-05-02 12:46:17 -05:00
test-cluster-listening-port.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-cluster-master-error.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-master-kill.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-message.js test: dynamic port in parallel cluster tests 2017-05-02 12:46:16 -05:00
test-cluster-net-listen.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-cluster-net-send.js
test-cluster-process-disconnect.js test: remove common.PORT from test-cluster*.js 2017-05-02 12:46:11 -05:00
test-cluster-rr-domain-listen.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-rr-ref.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-cluster-send-deadlock.js test: dynamic port in cluster worker send 2017-05-02 12:46:13 -05:00
test-cluster-send-handle-twice.js test: dynamic port in cluster worker send 2017-05-02 12:46:13 -05:00
test-cluster-server-restart-none.js test: dynamic port in parallel cluster tests 2017-05-02 12:46:16 -05:00
test-cluster-server-restart-rr.js test: dynamic port in parallel cluster tests 2017-05-02 12:46:16 -05:00
test-cluster-setup-master-argv.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-cluster-setup-master-cumulative.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-cluster-setup-master-emit.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-cluster-setup-master-multiple.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-cluster-setup-master.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-shared-handle-bind-error.js test: dynamic port in parallel cluster tests 2017-05-02 12:46:16 -05:00
test-cluster-shared-handle-bind-privileged-port.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-cluster-shared-leak.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-uncaught-exception.js
test-cluster-worker-constructor.js
test-cluster-worker-death.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-deprecated.js test,cluster: add test-cluster-worker-deprecated 2017-01-27 08:11:53 -05:00
test-cluster-worker-destroy.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-disconnect-on-error.js test: dynamic port in cluster worker disconnect 2017-05-02 12:46:14 -05:00
test-cluster-worker-disconnect.js test: use dynamic port in 3 test-cluster-worker tests 2017-05-02 12:46:11 -05:00
test-cluster-worker-events.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-exit.js test: use dynamic port in 3 test-cluster-worker tests 2017-05-02 12:46:11 -05:00
test-cluster-worker-forced-exit.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-init.js
test-cluster-worker-isconnected.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-isdead.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-kill.js test: use dynamic port in 3 test-cluster-worker tests 2017-05-02 12:46:11 -05:00
test-cluster-worker-no-exit.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cluster-worker-wait-server-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-common.js test: enhance test-common.js 2017-02-22 21:05:10 +01:00
test-console-instance.js test: increase coverage of console 2017-03-13 11:19:32 -04:00
test-console-not-call-toString.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-console.js test-console: streamline arrow fn and refine regex 2017-01-31 14:09:39 -06:00
test-constants.js
test-crypto-authenticated.js test: skip tests with common.skip 2017-03-05 23:22:39 +01:00
test-crypto-binary-default.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-crypto-certificate.js test: improve crypto coverage 2017-02-21 21:14:22 -05:00
test-crypto-cipher-decipher.js
test-crypto-cipheriv-decipheriv.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-crypto-deprecated.js
test-crypto-dh-odd-key.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-dh.js test: improve crypto coverage 2017-02-21 21:14:26 -05:00
test-crypto-domain.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-domains.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-crypto-ecb.js
test-crypto-engine.js test: improve crypto.setEngine coverage to check for errors 2017-02-14 11:52:19 -05:00
test-crypto-fips.js crypto: support OPENSSL_CONF again 2017-02-21 21:14:23 -05:00
test-crypto-from-binary.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-hash-stream-pipe.js
test-crypto-hash.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-hmac.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-lazy-transform-writable.js test: add crypto check to crypto-lazy-transform 2017-05-02 12:46:11 -05:00
test-crypto-padding-aes256.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-crypto-padding.js
test-crypto-pbkdf2.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-crypto-random.js crypto: add randomFill and randomFillSync 2017-05-01 11:16:07 -05:00
test-crypto-rsa-dsa.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-sign-verify.js test: improve crypto coverage 2017-02-21 21:14:22 -05:00
test-crypto-stream.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-crypto-verify-failure.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-crypto.js crypto,tls: fix mutability of return values 2017-01-27 08:12:03 -05:00
test-cwd-enoent-preload.js
test-cwd-enoent-repl.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-cwd-enoent.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-debug-agent.js test: change common.expectsError() signature 2017-02-27 21:19:08 -05:00
test-debug-args.js
test-debug-brk-no-arg.js
test-debug-brk.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-debug-no-context.js
test-debug-port-cluster.js
test-debug-port-from-cmdline.js lib: deprecate node --debug at runtime 2017-02-26 19:14:23 -05:00
test-debug-port-numbers.js
test-debug-prompt.js
test-debug-protocol-execute.js
test-debug-signal-cluster.js lib: deprecate node --debug at runtime 2017-02-26 19:14:23 -05:00
test-debug-uncaught-exception-async.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-debug-uncaught-exception.js
test-debug-usage.js test: add hasCrypto check to test-debug-usage 2017-05-02 12:46:09 -05:00
test-debugger-client-addhandle.js
test-debugger-pid.js test: adapt test-debugger-pid to localized Windows 2017-02-14 11:52:33 -05:00
test-debugger-util-regression.js test: fix timing sensitivity in debugger test 2017-02-14 11:51:59 -05:00
test-delayed-require.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-dgram-address.js test: skip IPv6 test on non-IPv6 systems 2017-02-21 14:54:10 -05:00
test-dgram-bind-default-address.js
test-dgram-bind-shared-ports.js
test-dgram-bind.js test: add dgram.Socket.prototype.bind's test 2017-01-30 12:08:52 -05:00
test-dgram-bytes-length.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-close-during-bind.js test: cover dgram socket close during bind case 2017-02-21 21:14:25 -05:00
test-dgram-close-in-listening.js
test-dgram-close-is-not-callback.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-cluster-bind-error.js test: cover cluster error during dgram socket bind 2017-02-14 12:02:16 -05:00
test-dgram-cluster-close-during-bind.js test: cover dgram socket close during cluster bind 2017-02-21 21:14:21 -05:00
test-dgram-create-socket-handle.js test: add coverage for dgram _createSocketHandle() 2017-02-14 12:02:18 -05:00
test-dgram-createSocket-type.js
test-dgram-error-message-address.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-dgram-exclusive-implicit-bind.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-implicit-bind.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-listen-after-bind.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-membership.js test: refactor test-dgram-membership 2017-02-21 21:14:25 -05:00
test-dgram-msgsize.js
test-dgram-multicast-loopback.js test: increase setMulticastLoopback() coverage 2017-02-14 12:02:14 -05:00
test-dgram-multicast-setTTL.js test: improving coverage for dgram 2017-01-30 12:08:49 -05:00
test-dgram-oob-buffer.js test: remove obsolete comment from dgram test 2017-02-14 11:52:23 -05:00
test-dgram-recv-error.js test: add coverage to dgram receive error case 2017-02-14 11:52:29 -05:00
test-dgram-ref.js test: increase dgram ref()/unref() coverage 2017-02-14 11:52:30 -05:00
test-dgram-regress-4496.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-send-bad-arguments.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-send-callback-buffer-length.js test: add error checking in callback 2017-02-22 21:05:12 +01:00
test-dgram-send-callback-buffer.js
test-dgram-send-callback-multi-buffer.js
test-dgram-send-callback-recursive.js
test-dgram-send-default-host.js
test-dgram-send-empty-array.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-send-empty-buffer.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dgram-send-empty-packet.js
test-dgram-send-error.js test: add coverage for dgram send() errors 2017-02-14 11:52:31 -05:00
test-dgram-send-multi-buffer-copy.js
test-dgram-send-multi-string-array.js test: add coverage for string array dgram send() 2017-02-14 11:52:31 -05:00
test-dgram-sendto.js test: add dgram.Socket.prototype.sendto's test 2017-01-30 12:08:23 -05:00
test-dgram-setBroadcast.js test: refactor test-dgram-setBroadcast.js 2017-02-14 11:52:35 -05:00
test-dgram-setTTL.js test: improving coverage for dgram 2017-01-30 12:08:49 -05:00
test-dgram-udp4.js
test-dgram-udp6-send-default-host.js
test-dgram-unref.js test: increase dgram ref()/unref() coverage 2017-02-14 11:52:30 -05:00
test-dh-padding.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-dns-lookup.js test: improving coverage of dns-lookup 2017-01-30 12:08:50 -05:00
test-dns-regress-6244.js
test-dns-regress-7070.js
test-dns.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-domain-crypto.js crypto: add randomFill and randomFillSync 2017-05-01 11:16:07 -05:00
test-domain-enter-exit.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-exit-dispose-again.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-exit-dispose.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-from-timer.js
test-domain-http-server.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-implicit-fs.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-multi.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-domain-nested-throw.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-nested.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-domain-no-error-handler-abort-on-uncaught-0.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-1.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-2.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-3.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-4.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-5.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-domain-no-error-handler-abort-on-uncaught-6.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-7.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-8.js test: reduce unmanaged parallelism in domain test 2017-01-30 12:08:25 -05:00
test-domain-no-error-handler-abort-on-uncaught-9.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-domain-safe-exit.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-stack-empty-in-process-uncaughtexception.js
test-domain-stack.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-throw-error-then-throw-from-uncaught-exception-handler.js tools: use no-useless-concat ESLint rule 2017-05-02 12:46:18 -05:00
test-domain-timers-uncaught-exception.js timer,domain: maintain order of timer callbacks 2017-02-21 21:14:22 -05:00
test-domain-timers.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-top-level-error-handler-clears-stack.js
test-domain-top-level-error-handler-throw.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain-uncaught-exception.js test: use common.fail() instead of assert(false) 2017-01-30 12:08:53 -05:00
test-domain-with-abort-on-uncaught-exception.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-domain.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-dsa-fips-invalid-key.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-env-var-no-warnings.js doc: fix occurences of "the the" 2017-03-13 11:39:30 -04:00
test-error-reporting.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-eval-require.js
test-eval.js
test-event-emitter-add-listeners.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-event-emitter-check-listener-leaks.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-errors.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-get-max-listeners.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-listener-count.js
test-event-emitter-listeners-side-effects.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-listeners.js
test-event-emitter-max-listeners-warning-for-null.js
test-event-emitter-max-listeners-warning-for-symbol.js
test-event-emitter-max-listeners-warning.js
test-event-emitter-max-listeners.js test: add second argument to assert.throws() 2017-01-04 10:44:05 -06:00
test-event-emitter-method-names.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-modify-in-emit.js test: improve test-event-emitter-modify-in-emit 2017-01-27 08:11:50 -05:00
test-event-emitter-no-error-provided-to-error-event.js domain,events: support non-object 'error' argument 2017-02-24 02:16:19 +01:00
test-event-emitter-num-args.js test: expand test coverage of events.js 2017-01-31 14:09:33 -06:00
test-event-emitter-once.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-prepend.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-event-emitter-remove-all-listeners.js test: improve coverage on removeListeners functions 2017-02-14 11:52:05 -05:00
test-event-emitter-remove-listeners.js events: do not keep arrays with a single listener 2017-04-10 13:44:37 -04:00
test-event-emitter-set-max-listeners-side-effects.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-event-emitter-special-event-names.js test: expand test coverage of events.js 2017-01-31 14:09:33 -06:00
test-event-emitter-subclass.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-event-emitter-symbols.js
test-events-list.js
test-exception-handler.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-exception-handler2.js
test-file-read-noexist.js
test-file-write-stream.js
test-file-write-stream2.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-file-write-stream3.js
test-force-repl-with-eval.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-force-repl.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-freelist.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-access.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-fs-append-file-sync.js
test-fs-append-file.js
test-fs-assert-encoding-error.js test: add fs-assert-encoding's test 2017-02-14 11:51:46 -05:00
test-fs-buffer.js test: refactor test-fs-buffer 2017-02-14 11:52:29 -05:00
test-fs-buffertype-writesync.js test: buffer should always be stringified 2017-05-02 12:46:13 -05:00
test-fs-chmod.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-empty-readStream.js test: replace throw with common.fail 2017-03-28 19:26:55 -04:00
test-fs-error-messages.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-exists.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-fsync.js
test-fs-link.js test: increase usage of assert.ifError() 2017-01-30 12:08:25 -05:00
test-fs-long-path.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-fs-make-callback.js test: check error message in test-fs-make-callback 2017-01-30 12:08:22 -05:00
test-fs-mkdir-rmdir.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-mkdir.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-mkdtemp-prefix-check.js test: refactor mkdtemp test and added async 2017-04-10 13:44:40 -04:00
test-fs-mkdtemp.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-non-number-arguments-throw.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-fs-null-bytes.js test: fix args in parallel/test-fs-null-bytes.js 2017-03-05 23:25:09 +01:00
test-fs-open-flags.js test: add tests for rs+, sr+ to test-fs-open-flags.js 2017-01-30 12:08:50 -05:00
test-fs-open-numeric-flags.js
test-fs-open.js
test-fs-options-immutable.js test, win: fix up symlink tests 2017-01-30 12:08:24 -05:00
test-fs-read-buffer-tostring-fail.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-read-buffer-zero-length.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-read-buffer.js test: check error and cleanups in test-fs-read-buffer 2017-01-27 08:11:49 -05:00
test-fs-read-file-assert-encoding.js test: expand test coverage of fs.js 2017-01-31 14:09:34 -06:00
test-fs-read-file-sync-hostname.js
test-fs-read-file-sync.js
test-fs-read-stream-encoding.js
test-fs-read-stream-err.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-fs-read-stream-fd-leak.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-read-stream-fd.js test: improve the code in test-fs-read-stream 2017-01-30 12:08:32 -05:00
test-fs-read-stream-inherit.js
test-fs-read-stream-resume.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-read-stream-throw-type-error.js
test-fs-read-stream.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-read-zero-length.js test: refactor test-fs-read-zero-length.js 2017-01-30 12:08:50 -05:00
test-fs-read.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-readdir-ucs2.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-readdir.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-readfile-empty.js
test-fs-readfile-error.js test: use common.js to check platform 2017-05-02 15:22:45 -05:00
test-fs-readfile-fd.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-readfile-pipe-large.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-fs-readfile-pipe.js tools,test: enforce assert.ifError with lint rule 2017-01-30 12:08:37 -05:00
test-fs-readfile-unlink.js
test-fs-readfile-zero-byte-liar.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-fs-readfilesync-pipe-large.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-fs-realpath-buffer-encoding.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-realpath-on-substed-drive.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-realpath.js test: add regex in test_cyclic_link_protection 2017-03-13 11:19:41 -04:00
test-fs-sir-writes-alot.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-stat.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-stream-double-close.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-fs-symlink-dir-junction-relative.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-symlink-dir-junction.js tools,test: enforce assert.ifError with lint rule 2017-01-30 12:08:37 -05:00
test-fs-symlink.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-sync-fd-leak.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-syncwritestream.js
test-fs-truncate-fd.js
test-fs-truncate-GH-6233.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-truncate-sync.js test: expand test coverage of fs.js 2017-01-30 12:09:03 -05:00
test-fs-truncate.js test: expand test coverage of fs.js 2017-01-30 12:09:03 -05:00
test-fs-utimes.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-fs-watch-encoding.js fs: re-enable watch facility in AIX 2017-02-14 11:52:26 -05:00
test-fs-watch-enoent.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-watch-recursive.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-watch-stop-async.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-watch-stop-sync.js
test-fs-watchfile.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-whatwg-url.js fs: allow WHATWG URL and file: URLs as paths 2017-02-14 11:52:37 -05:00
test-fs-write-buffer.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-write-file-buffer.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-write-file-sync.js test: improve test-fs-write-file-sync 2017-01-30 12:08:37 -05:00
test-fs-write-file-uint8array.js
test-fs-write-file.js
test-fs-write-no-fd.js
test-fs-write-stream-autoclose-option.js test: increase usage of assert.ifError() 2017-01-30 12:08:25 -05:00
test-fs-write-stream-change-open.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-write-stream-encoding.js
test-fs-write-stream-end.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-fs-write-stream-err.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-write-stream-throw-type-error.js test: improve test-fs-write-stream-throw-type 2017-01-27 08:12:03 -05:00
test-fs-write-stream.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-fs-write-string-coerce.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-fs-write-sync.js
test-fs-write.js test: increase usage of assert.ifError() 2017-01-30 12:08:25 -05:00
test-global-console-exists.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-global.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-handle-wrap-close-abort.js test: provide duration/interval to timers 2017-01-27 08:11:51 -05:00
test-handle-wrap-isrefed.js tty: add ref() so process.stdin.ref() etc. work 2017-03-05 23:21:05 +01:00
test-http-1.0-keep-alive.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-1.0.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-abort-before-end.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-abort-client.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-abort-queued-2.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-abort-queued.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-after-connect.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-agent-destroyed-socket.js test: improve test-http-agent-destroyed-socket.js 2017-02-14 11:52:36 -05:00
test-http-agent-error-on-idle.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-agent-false.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-agent-getname.js
test-http-agent-keepalive.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-agent-maxsockets-regress-4050.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-agent-maxsockets.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-agent-no-protocol.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-agent-null.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-agent.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-allow-req-after-204-res.js test: improve test-http-allow-req-after-204-res 2017-01-04 10:44:10 -06:00
test-http-automatic-headers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-bind-twice.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-blank-header.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-buffer-sanity.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-byteswritten.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-http-catch-uncaughtexception.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-chunk-problem.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-chunked-304.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-http-chunked.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-abort-event.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-abort-no-agent.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-abort-unix-socket.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-abort.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-abort2.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-aborted-event.js
test-http-client-agent.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-check-http-token.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-default-headers-exist.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-defaults.js test: add http.ClientRequest defaults test 2017-01-18 22:05:27 -05:00
test-http-client-encoding.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-http-client-get-url.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-keep-alive-release-before-finish.js
test-http-client-parse-error.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-pipe-end.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-race-2.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-race.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-read-in-error.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-readable.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-reject-chunked-with-content-length.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-reject-cr-no-lf.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-response-domain.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-timeout-agent.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-timeout-event.js
test-http-client-timeout-option-listeners.js
test-http-client-timeout-option.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-timeout-with-data.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-timeout.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-client-unescaped-path.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-client-upload-buf.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-client-upload.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-common.js test: add http-common's test 2017-01-27 08:12:05 -05:00
test-http-conn-reset.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-connect-req-res.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-connect.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-content-length.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-contentLength0.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-createConnection.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-date-header.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-default-encoding.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-default-port.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-destroyed-socket-write2.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-dns-error.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-http-double-content-length.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-end-throw-socket-handling.js
test-http-eof-on-connect.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-exceptions.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-expect-continue.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-expect-handling.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-extra-response.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-flush-headers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-flush-response-headers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-flush.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-full-response.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-get-pipeline-problem.js tools: enable one-var-declaration-per-line ESLint rule 2017-02-22 21:05:18 +01:00
test-http-head-request.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-head-response-has-no-body-end.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-head-response-has-no-body.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-header-obstext.js
test-http-header-read.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-hex-write.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-host-header-ipv6-fail.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-host-headers.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-incoming-matchKnownFields.js test: add http_incoming's matchKnownFields test 2017-01-27 08:12:02 -05:00
test-http-incoming-pipelined-socket-destroy.js
test-http-invalid-path-chars.js test: invalid chars in http client path 2017-03-28 19:12:49 -04:00
test-http-invalid-urls.js
test-http-invalidheaderfield.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-invalidheaderfield2.js
test-http-keep-alive-close-on-header.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-keep-alive.js
test-http-keepalive-client.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-keepalive-maxsockets.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-keepalive-request.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-listening.js
test-http-localaddress-bind-error.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-localaddress.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-malformed-request.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-many-ended-pipelines.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-max-headers-count.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-methods.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-http-multi-line-headers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-mutable-headers.js http: add new functions to OutgoingMessage 2017-02-27 21:50:31 -05:00
test-http-no-content-length.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-no-read-no-dump.js
test-http-outgoing-finish.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-outgoing-proto.js test: check error message in test-http-outgoing-proto 2017-01-31 14:09:36 -06:00
test-http-parser-bad-ref.js test: remove obsolete eslint-disable comment 2017-03-05 23:25:43 +01:00
test-http-parser-free.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-parser.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-pause-resume-one-end.js
test-http-pause.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-pipe-fs.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-pipeline-flood.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-pipeline-regr-2639.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-pipeline-regr-3332.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-http-pipeline-regr-3508.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-proxy.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-raw-headers.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-regr-gh-2821.js
test-http-remove-header-stays-removed.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-request-dont-override-options.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-request-end-twice.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-request-end.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-request-invalid-method-error.js test: change common.expectsError() signature 2017-02-27 21:19:08 -05:00
test-http-request-methods.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-res-write-after-end.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-res-write-end-dont-take-array.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-response-add-header-after-sent.js
test-http-response-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-response-multi-content-length.js test: use common.fail() instead of assert(false) 2017-01-30 12:08:53 -05:00
test-http-response-multiheaders.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-response-no-headers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-response-readable.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-response-remove-header-after-sent.js
test-http-response-splitting.js test: refactor test-http-response-splitting 2017-02-22 21:05:12 +01:00
test-http-response-status-message.js test: throw Error objects instead of literals 2017-02-14 11:52:17 -05:00
test-http-response-statuscode.js test: add test case to test-http-response-statuscode.js 2017-01-30 12:08:47 -05:00
test-http-same-map.js
test-http-server-client-error.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-server-multiheaders.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-server-multiheaders2.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-server-reject-chunked-with-content-length.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-server-reject-cr-no-lf.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-http-server-stale-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-server-unconsume-consume.js tools: use no-useless-concat ESLint rule 2017-05-02 12:46:18 -05:00
test-http-server-unconsume.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-server.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-set-cookies.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-set-timeout-server.js test: fix flaky test-http-set-timeout-server 2017-03-14 10:01:56 -04:00
test-http-set-timeout.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-set-trailers.js tools: use no-useless-concat ESLint rule 2017-05-02 12:46:18 -05:00
test-http-should-keep-alive.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-status-code.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-status-message.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-status-reason-invalid-chars.js test: don't connect to :: (use localhost instead) 2017-01-30 12:08:17 -05:00
test-http-timeout-overflow.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-timeout.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-unix-socket.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-upgrade-advertise.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-upgrade-agent.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-upgrade-client.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-upgrade-client2.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-upgrade-server.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-upgrade-server2.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-url.parse-auth-with-header-in-request.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-url.parse-auth.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-url.parse-basic.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-url.parse-https.request.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-url.parse-only-support-http-https-protocol.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-http-url.parse-path.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-url.parse-post.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-url.parse-search.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-wget.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-http-write-callbacks.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-write-empty-string.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http-write-head.js test: add an exception test to http-write-head 2017-01-31 14:09:39 -06:00
test-http-zero-length-write.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-http.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-agent-create-connection.js test: fix flaky test-https-agent-create-connection 2017-03-05 23:24:17 +01:00
test-https-agent-disable-session-reuse.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-agent-getname.js https: Use secureProtocol in Agent#getName 2017-01-27 08:11:56 -05:00
test-https-agent-secure-protocol.js https: Use secureProtocol in Agent#getName 2017-01-27 08:11:56 -05:00
test-https-agent-servername.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-agent-session-eviction.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-https-agent-session-reuse.js test: s/assert.notEqual()/assert.notStrictEqual()/ 2017-01-30 12:08:35 -05:00
test-https-agent-sni.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-agent-sockets-leak.js
test-https-agent.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-byteswritten.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-client-checkServerIdentity.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-https-client-get-url.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-client-reject.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-https-client-resume.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-connect-address-family.js
test-https-connecting-to-http.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-https-drain.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-eof-for-eom.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-foafssl.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-host-headers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-localaddress-bind-error.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-localaddress.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-pfx.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-req-split.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-resume-after-renew.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-simple.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-https-socket-options.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-https-strict.js test: use common.mustCall in test-https-strict 2017-05-02 15:22:46 -05:00
test-https-timeout-server-2.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-https-timeout-server.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-https-timeout.js
test-https-truncate.js test: refactor test-https-truncate 2017-01-27 08:11:44 -05:00
test-icu-punycode.js test: more comprehensive IDNA test cases 2017-03-05 23:21:21 +01:00
test-icu-stringwidth.js test: use common.hasIntl in tests related to ICU 2017-01-27 08:12:06 -05:00
test-icu-transcode.js src, i18n: cleanup usage of MaybeStackBuffer 2017-02-25 11:24:35 -05:00
test-instanceof.js
test-internal-errors.js lib, test: add duplicate symbol checking in E() 2017-03-20 11:24:04 -04:00
test-internal-modules-expose.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-internal-modules.js test: refactor test-internal-modules 2017-01-04 10:44:05 -06:00
test-internal-socket-list-receive.js test: add internal/socket_list tests 2017-04-10 18:40:44 -04:00
test-internal-socket-list-send.js test: add internal/socket_list tests 2017-04-10 18:40:44 -04:00
test-internal-unicode.js test: add Unicode characters regression test 2017-04-10 13:44:40 -04:00
test-internal-util-assertCrypto.js test: fix test-internal-util-assertCrypto regex 2017-03-05 23:23:46 +01:00
test-internal-util-decorate-error-stack.js util: eliminate unnecessary exports 2017-02-22 21:05:09 +01:00
test-internal-util-normalizeencoding.js
test-intl-no-icu-data.js test: make test-intl-no-icu-data more robust 2017-03-01 15:53:18 -05:00
test-intl-v8BreakIterator.js test: use common.hasIntl in tests related to ICU 2017-01-27 08:12:06 -05:00
test-intl.js deps: add test for v8 bug in toUpper('ç') 2017-01-30 12:08:36 -05:00
test-js-stream-call-properties.js
test-listen-fd-cluster.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-listen-fd-detached-inherit.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-listen-fd-detached.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-listen-fd-ebadf.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-listen-fd-server.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-memory-usage-emfile.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-memory-usage.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-microtask-queue-integration-domain.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-microtask-queue-integration.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-microtask-queue-run-domain.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-microtask-queue-run-immediate-domain.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-microtask-queue-run-immediate.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-microtask-queue-run.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-module-circular-symlinks.js
test-module-globalpaths-nodepath.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-module-loading-error.js test: make module testing stricter 2017-02-14 11:52:07 -05:00
test-module-loading-globalpaths.js test: add test for loading from global folders 2017-03-13 11:20:07 -04:00
test-module-nodemodulepaths.js
test-module-relative-lookup.js
test-module-require-depth.js
test-module-symlinked-peer-modules.js
test-module-version.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-net-access-byteswritten.js
test-net-after-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-better-error-messages-listen-path.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-better-error-messages-listen.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-better-error-messages-path.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-better-error-messages-port-hostname.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-better-error-messages-port.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-binary.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-bind-twice.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-buffersize.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-bytes-read.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-bytes-stats.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-can-reset-timeout.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-connect-buffer.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-connect-handle-econnrefused.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-connect-immediate-destroy.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-connect-immediate-finish.js
test-net-connect-local-error.js test: improve message in net-connect-local-error 2017-02-21 21:14:25 -05:00
test-net-connect-options-ipv6.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-connect-options.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-connect-paused-connection.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-create-connection.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-dns-custom-lookup.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-dns-error.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-dns-lookup-skip.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-dns-lookup.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-during-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-eaddrinuse.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-end-close.js
test-net-end-without-connect.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-error-twice.js test: use common.fail() instead of assert(false) 2017-01-30 12:08:53 -05:00
test-net-internal.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-isip.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-keepalive.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-large-string.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-listen-close-server-callback-is-not-function.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-listen-close-server.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-listen-error.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-listen-exclusive-random-ports.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-listen-fd0.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-listen-port-option.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-listen-shared-ports.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-listening.js
test-net-local-address-port.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-localerror.js
test-net-localport.js test: console.log removed from test-net-localport 2017-05-02 12:46:14 -05:00
test-net-pause-resume-connecting.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-persistent-keepalive.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-persistent-nodelay.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-persistent-ref-unref.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-pingpong.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-pipe-connect-errors.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-reconnect-error.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-reconnect.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-remote-address-port.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-server-bind.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-server-close.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-server-connections-child-null.js test,net: add tests for server.connections 2017-01-30 12:08:45 -05:00
test-net-server-connections.js test,net: add tests for server.connections 2017-01-30 12:08:45 -05:00
test-net-server-listen-remove-callback.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-server-max-connections-close-makes-more-available.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-server-max-connections.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-server-options.js test: improved type checking with regex 2017-05-02 15:22:43 -05:00
test-net-server-pause-on-connect.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-server-try-ports.js
test-net-server-unref-persistent.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-server-unref.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-settimeout.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-net-socket-connect-without-cb.js net: allow missing callback for Socket.connect 2017-03-13 11:38:36 -04:00
test-net-socket-connecting.js
test-net-socket-destroy-twice.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-socket-local-address.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-socket-timeout-unref.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-socket-timeout.js
test-net-socket-write-error.js
test-net-stream.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-sync-cork.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-net-write-after-close.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-net-write-connect-write.js tools: use no-useless-concat ESLint rule 2017-05-02 12:46:18 -05:00
test-net-write-fully-async-buffer.js
test-net-write-fully-async-hex-string.js
test-net-write-slow.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-next-tick-doesnt-hang.js
test-next-tick-domain.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-next-tick-errors.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-next-tick-intentional-starvation.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-next-tick-ordering.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-next-tick-ordering2.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-next-tick-when-exiting.js
test-next-tick.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-no-enter-tickcallback.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-npm-install.js test: improve error messages in test-npm-install 2017-02-14 11:51:48 -05:00
test-os-homedir-no-envvar.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-os.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-path-makelong.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-path-parse-format.js test: improve checks in test-path-parse-format 2017-02-14 11:52:25 -05:00
test-path-zero-length-strings.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-path.js test: add test cases for path 2017-02-22 21:05:11 +01:00
test-pipe-address.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-pipe-file-to-http.js test: increase usage of assert.ifError() 2017-01-30 12:08:25 -05:00
test-pipe-head.js
test-pipe-return-val.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-pipe-stream.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-pipe-unref.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-pipe-writev.js src: enable writev for pipe handles on Unix 2017-01-27 08:11:56 -05:00
test-preload.js tools: use no-useless-concat ESLint rule 2017-05-02 12:46:18 -05:00
test-process-argv-0.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-assert.js test: add process.assert's test 2017-01-30 12:08:59 -05:00
test-process-beforeexit.js test: refactor beforeExit tests 2017-01-30 12:08:34 -05:00
test-process-binding.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-process-chdir.js test: improve test-process-chdir 2017-05-02 12:46:16 -05:00
test-process-config.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-process-constants-noatime.js
test-process-cpuUsage.js test: s/assert.notEqual()/assert.notStrictEqual()/ 2017-01-30 12:08:35 -05:00
test-process-emit.js
test-process-emitwarning.js
test-process-env.js tools: ignore URLs in line length linting 2017-04-10 18:47:48 -04:00
test-process-exec-argv.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-process-execpath.js
test-process-exit-code.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-exit-from-before-exit.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-process-exit-recursive.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-exit.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-getactivehandles.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-process-getactiverequests.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-getgroups.js test: getgroups() may contain duplicate GIDs 2017-01-30 12:08:43 -05:00
test-process-hrtime.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-process-kill-null.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-process-kill-pid.js test: improve test-process-kill-pid 2017-05-02 15:22:43 -05:00
test-process-next-tick.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-process-no-deprecation.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-process-prototype.js process: maintain constructor descriptor 2017-03-28 19:12:50 -04:00
test-process-raw-debug.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-remove-all-signal-listeners.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-process-setuid-setgid.js test: enable setuid/setgid test 2017-05-02 12:46:10 -05:00
test-process-versions.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-process-wrap.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-promises-unhandled-rejections.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-promises-unhandled-symbol-rejections.js process: cast promise rejection reason to string 2017-05-02 20:39:17 -05:00
test-promises-warning-on-unhandled-rejection.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-punycode.js test: improve punycode coverage to check surrogate pair 2017-05-02 12:46:09 -05:00
test-querystring-escape.js test: increase querystring coverage 2017-04-10 13:44:35 -04:00
test-querystring-maxKeys-non-finite.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-querystring-multichar-separator.js
test-querystring.js test: increase querystring coverage 2017-04-10 13:44:35 -04:00
test-readdouble.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-readfloat.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-readint.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-readline-emit-keypress-events.js
test-readline-interface.js readline: rename deDupeHistory option 2017-03-28 18:28:56 -04:00
test-readline-keys.js test: refactor test-readline-keys 2017-02-14 12:02:13 -05:00
test-readline-set-raw-mode.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-readline-undefined-columns.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-readuint.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-ref-unref-return.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-regress-GH-746.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-819.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-1531.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-1899.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-regress-GH-2245.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-3238.js
test-regress-GH-3542.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-3739.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-4256.js
test-regress-GH-4948.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-5051.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-regress-GH-5727.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-regress-GH-5927.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-6235.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-regress-GH-7511.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regress-GH-9819.js crypto: handle exceptions in hmac/hash.digest 2017-04-10 13:44:49 -04:00
test-regress-GH-12371.js os,vm: fix segfaults and CHECK failure 2017-05-02 12:46:09 -05:00
test-regress-GH-io-1068.js
test-regress-GH-io-1811.js
test-regress-GH-node-9326.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-regression-object-prototype.js
test-repl-autolibs.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-repl-console.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-context.js
test-repl-definecommand.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-deprecated.js
test-repl-domain.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-repl-editor.js test: fix test filenames 2017-05-02 20:39:17 -05:00
test-repl-end-emits-exit.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-repl-envvars.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-repl-eval-scope.js
test-repl-eval.js
test-repl-function-definition-edge-case.js test: fix repl-function-redefinition-edge-case 2017-03-20 10:19:30 -04:00
test-repl-harmony.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-history-perm.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-mode.js
test-repl-null.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-options.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-repl-persistent-history.js repl: support hidden history file on Windows 2017-05-02 12:46:14 -05:00
test-repl-recoverable.js
test-repl-require-cache.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-repl-require-context.js test: simplify output handling in repl tests 2017-02-14 11:52:08 -05:00
test-repl-require.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-reset-event.js test: clean up repl-reset-event file 2017-01-04 10:44:06 -06:00
test-repl-save-load.js test: fix test filenames 2017-05-02 20:39:17 -05:00
test-repl-setprompt.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-sigint-nested-eval.js test: refactor test-repl-sigint-nested-eval 2017-02-14 12:02:17 -05:00
test-repl-sigint.js test: refactor test-repl-sigint 2017-02-14 12:02:14 -05:00
test-repl-syntax-error-handling.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-repl-syntax-error-stack.js
test-repl-tab-complete-crash.js
test-repl-tab-complete.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-tab.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-repl-underscore.js test,repl: add coverage for repl .clear+useGlobal 2017-01-27 08:12:01 -05:00
test-repl-unexpected-token-recoverable.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-repl-use-global.js
test-repl.js tools: use no-useless-concat ESLint rule 2017-05-02 12:46:18 -05:00
test-require-cache.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-require-dot.js
test-require-exceptions.js
test-require-extensions-main.js
test-require-extensions-same-filename-as-dir-trailing-slash.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-require-extensions-same-filename-as-dir.js
test-require-invalid-package.js test: change common.expectsError() signature 2017-02-27 21:19:08 -05:00
test-require-json.js
test-require-long-path.js
test-require-process.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-require-resolve.js
test-require-symlink.js tools: enable no-useless-return eslint rule 2017-05-02 12:46:18 -05:00
test-require-unicode.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-setproctitle.js test: fix parallel/test-setproctitle.js on alpine 2017-05-02 12:46:15 -05:00
test-sigint-infinite-loop.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-signal-handler.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-signal-safety.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-signal-unregister.js
test-socket-write-after-fin-error.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-socket-write-after-fin.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-spawn-cmd-named-pipe.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-stdin-child-proc.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stdin-from-file.js test: refactor test-stdin-from-file 2017-01-04 10:44:08 -06:00
test-stdin-hang.js
test-stdin-pause-resume-sync.js
test-stdin-pause-resume.js
test-stdin-pipe-large.js
test-stdin-pipe-resume.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stdin-resume-pause.js
test-stdin-script-child.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stdio-closed.js src: ensure that fd 0-2 are valid on windows 2017-03-28 18:28:50 -04:00
test-stdio-readable-writable.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-stdout-cannot-be-closed-child-process-pipe.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stdout-close-catch.js
test-stdout-close-unref.js
test-stdout-stderr-reading.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stdout-to-file.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-base-no-abort.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-big-packet.js
test-stream-big-push.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-buffer-list.js
test-stream-decoder-objectmode.js
test-stream-duplex.js test: use duplex streams in duplex stream test 2017-05-02 12:46:15 -05:00
test-stream-end-paused.js test: provide duration/interval to timers 2017-01-27 08:11:51 -05:00
test-stream-events-prepend.js
test-stream-inheritance.js
test-stream-ispaused.js
test-stream-pipe-after-end.js test: refactor test-stream-pipe-after-end 2017-01-04 10:44:09 -06:00
test-stream-pipe-await-drain-manual-resume.js test: tests for _readableStream.awaitDrain 2017-01-27 08:12:04 -05:00
test-stream-pipe-await-drain-push-while-write.js test: tests for _readableStream.awaitDrain 2017-01-27 08:12:04 -05:00
test-stream-pipe-await-drain.js test: tests for _readableStream.awaitDrain 2017-01-27 08:12:04 -05:00
test-stream-pipe-cleanup-pause.js
test-stream-pipe-cleanup.js
test-stream-pipe-error-handling.js test: refactor test-stream-pipe-error-handling 2017-01-04 10:44:10 -06:00
test-stream-pipe-event.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-pipe-multiple-pipes.js
test-stream-pipe-unpipe-streams.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-stream-pipe-without-listenerCount.js
test-stream-preprocess.js
test-stream-push-order.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-push-strings.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-readable-constructor-set-methods.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-readable-emittedReadable.js
test-stream-readable-event.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-stream-readable-flow-recursion.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-readable-invalid-chunk.js
test-stream-readable-needReadable.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-stream-readable-reading-readingMore.js
test-stream-readable-resumeScheduled.js
test-stream-readable-with-unimplemented-_read.js
test-stream-readableListening-state.js
test-stream-transform-constructor-set-methods.js test: improve test stream transform constructor 2017-01-30 12:08:42 -05:00
test-stream-transform-flush-data.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-transform-objectmode-falsey-value.js test: refactor test-stream-transform-object 2017-01-30 12:08:29 -05:00
test-stream-transform-split-objectmode.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-unpipe-event.js stream: Fixes missing 'unpipe' event 2017-05-02 20:41:22 -05:00
test-stream-unshift-empty-chunk.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-unshift-read-race.js test: refactor test-stream-unshift-read-race 2017-01-04 10:44:10 -06:00
test-stream-wrap-encoding.js
test-stream-wrap.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-writable-change-default-encoding.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-writable-constructor-set-methods.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-writable-decoded-encoding.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-stream-writable-ended-state.js
test-stream-writable-finished-state.js
test-stream-writable-needdrain-state.js
test-stream-writable-null.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream-writableState-ending.js
test-stream-writableState-uncorked-bufferedRequestCount.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream-writev.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-stream2-base64-single-char-read-end.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-compatibility.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-decode-partial.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-finish-pipe.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-httpclient-response-end.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-large-read-stall.js test: improve test-stream2-large-read-stall 2017-01-30 12:08:48 -05:00
test-stream2-objects.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-pipe-error-handling.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-stream2-pipe-error-once-listener.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-push.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-read-sync-stack.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-readable-empty-buffer-no-eof.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-readable-from-list.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-readable-legacy-drain.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-readable-non-empty-end.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-readable-wrap-empty.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-stream2-readable-wrap.js test: refactor test-stream2-readable-wrap.js 2017-01-30 12:08:29 -05:00
test-stream2-set-encoding.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-transform.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-unpipe-drain.js test: refactor test-stream2-unpipe-drain 2017-01-04 10:44:08 -06:00
test-stream2-unpipe-leak.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream2-writable.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-stream3-cork-end.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream3-cork-uncork.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-stream3-pause-then-read.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-string-decoder-end.js test: use repeat() instead of new Array().join() 2017-02-14 11:51:49 -05:00
test-string-decoder.js test: add coverage for utf8CheckIncomplete() 2017-02-22 21:05:06 +01:00
test-stringbytes-external.js test: replace [].join() with ''.repeat() 2017-05-02 12:46:10 -05:00
test-sync-fileread.js
test-sync-io-option.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-sys.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-tcp-wrap-connect.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tcp-wrap-listen.js test: improve test-tcp-wrap-listen 2017-05-02 20:39:16 -05:00
test-tcp-wrap.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-timer-close.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-timers-active.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-api-refs.js
test-timers-args.js test: refactor several parallel/test-timer tests 2017-01-30 12:08:33 -05:00
test-timers-clear-null-does-not-throw-error.js
test-timers-clearImmediate.js test: add mustCall in test-timers-clearImmediate 2017-05-02 15:22:42 -05:00
test-timers-immediate-queue.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-immediate.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-timers-linked-list.js
test-timers-nested.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-non-integer-delay.js test: refactor several parallel/test-timer tests 2017-01-30 12:08:33 -05:00
test-timers-now.js
test-timers-ordering.js test: refactor several parallel/test-timer tests 2017-01-30 12:08:33 -05:00
test-timers-regress-GH-9765.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-timers-reset-process-domain-on-throw.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-timers-same-timeout-wrong-list-deleted.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-timers-socket-timeout-removes-other-socket-unref-timer.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-timers-this.js
test-timers-throw-when-cb-not-function.js
test-timers-uncaught-exception.js test: refactor several parallel/test-timer tests 2017-01-30 12:08:33 -05:00
test-timers-unenroll-unref-interval.js
test-timers-unref-active-unenrolled-disposed.js
test-timers-unref-active.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-timers-unref-call.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-unref-leak.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-timers-unref-remove-other-unref-timers-only-one-fires.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-unref-remove-other-unref-timers.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-timers-unref.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-unrefd-interval-still-fires.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-unrefed-in-beforeexit.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-timers-unrefed-in-callback.js timers: fix not to close reused timer handle 2017-03-28 19:06:17 -04:00
test-timers-zero-timeout.js
test-timers.js test: enhance test-timers 2017-01-30 12:09:02 -05:00
test-tls-0-dns-altname.js test: add script to create 0-dns-cert.pem 2017-03-13 11:20:02 -04:00
test-tls-addca.js test: move common tls connect setup into fixtures 2017-01-27 08:11:57 -05:00
test-tls-alert-handling.js test: refactor test-tls-alert-handling 2017-01-04 10:44:10 -06:00
test-tls-alert.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-alpn-server-client.js test: fix tests when npn feature is disabled. 2017-03-05 23:25:05 +01:00
test-tls-async-cb-after-socket-end.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-basic-validations.js
test-tls-ca-concat.js doc,test: tls .ca option supports multi-PEM files 2017-01-27 08:11:58 -05:00
test-tls-cert-chains-concat.js test: tls cert chain completion scenarios 2017-01-27 08:11:58 -05:00
test-tls-cert-chains-in-ca.js test: refactor test-tls-cert-chains-in-ca 2017-02-21 21:14:23 -05:00
test-tls-cert-regression.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-check-server-identity.js benchmark,build,doc,lib,src,test: correct typos 2017-03-05 23:25:21 +01:00
test-tls-cipher-list.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-client-abort.js test: remove uses of common.PORT in test-tls-client tests 2017-05-02 12:46:14 -05:00
test-tls-client-abort2.js test: remove uses of common.PORT in test-tls-client tests 2017-05-02 12:46:14 -05:00
test-tls-client-default-ciphers.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-client-destroy-soon.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-client-getephemeralkeyinfo.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-client-mindhsize.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-client-reject.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-client-resume.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-client-verify.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-close-error.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-close-notify.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-cnnic-whitelist.js test: add --use-bundled-ca to tls-cnnic-whitelist 2017-05-02 12:46:11 -05:00
test-tls-connect-address-family.js
test-tls-connect-given-socket.js
test-tls-connect-no-host.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-connect-pipe.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-connect-secure-context.js test: move common tls connect setup into fixtures 2017-01-27 08:11:57 -05:00
test-tls-connect-simple.js
test-tls-connect-stream-writes.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-connect.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-delayed-attach-error.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-delayed-attach.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-destroy-whilst-write.js
test-tls-dhe.js test: skip when openssl CLI doesn't exist 2017-02-14 12:02:16 -05:00
test-tls-ecdh-disable.js test: skip when openssl CLI doesn't exist 2017-02-14 12:02:16 -05:00
test-tls-ecdh.js test: skip when openssl CLI doesn't exist 2017-02-14 12:02:16 -05:00
test-tls-econnreset.js test: throw Error objects instead of literals 2017-02-14 11:52:17 -05:00
test-tls-empty-sni-context.js test: skip tests with common.skip 2017-03-05 23:22:39 +01:00
test-tls-env-bad-extra-ca.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-env-extra-ca.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-external-accessor.js
test-tls-fast-writing.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-friendly-error-message.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-getcipher.js
test-tls-getprotocol.js
test-tls-handshake-error.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-handshake-nohang.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-tls-hello-parser-failure.js
test-tls-honorcipherorder.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-inception.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-interleave.js
test-tls-invoke-queued.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-js-stream.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-junk-closes-server.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-junk-server.js
test-tls-key-mismatch.js test: add regex for expected error message 2017-03-28 19:26:53 -04:00
test-tls-legacy-onselect.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-max-send-fragment.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-multi-key.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-no-cert-required.js
test-tls-no-rsa-key.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-no-sslv3.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-no-sslv23.js test: use const for all require() calls 2017-01-30 12:08:31 -05:00
test-tls-npn-server-client.js test: fix tests when npn feature is disabled. 2017-03-05 23:25:05 +01:00
test-tls-ocsp-callback.js
test-tls-on-empty-socket.js
test-tls-over-http-tunnel.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-parse-cert-string.js
test-tls-passphrase.js
test-tls-pause.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-peer-certificate-encoding.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-peer-certificate-multi-keys.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-peer-certificate.js test: move common tls connect setup into fixtures 2017-01-27 08:11:57 -05:00
test-tls-pfx-gh-5100-regr.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-regr-gh-5108.js
test-tls-request-timeout.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-retain-handle-no-abort.js stream_base,tls_wrap: notify on destruct 2017-03-28 19:26:55 -04:00
test-tls-securepair-fiftharg.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-securepair-leak.js tls: fix SecurePair external memory reporting 2017-03-28 19:27:00 -04:00
test-tls-securepair-server.js test: skip when openssl CLI doesn't exist 2017-02-14 12:02:16 -05:00
test-tls-server-connection-server.js
test-tls-server-failed-handshake-emits-clienterror.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-tls-server-verify.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-tls-session-cache.js crypto: remove unused access of tlsext_hostname 2017-02-14 12:02:17 -05:00
test-tls-set-ciphers.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-set-encoding.js
test-tls-sni-option.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-sni-server-client.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-socket-close.js test: fix flaky test-tls-socket-close 2017-03-28 18:28:52 -04:00
test-tls-socket-default-options.js tls: new tls.TLSSocket() supports sec ctx options 2017-02-25 11:14:36 -05:00
test-tls-socket-destroy.js tls: fix segfault on destroy after partial read 2017-03-21 11:12:37 -04:00
test-tls-socket-failed-handshake-emits-error.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-tls-startcom-wosign-whitelist.js crypto: add cert check issued by StartCom/WoSign 2017-02-14 11:52:02 -05:00
test-tls-starttls-server.js tls: do not crash on STARTTLS when OCSP requested 2017-02-22 21:05:21 +01:00
test-tls-ticket-cluster.js
test-tls-ticket.js
test-tls-timeout-server-2.js
test-tls-timeout-server.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-tls-two-cas-one-string.js
test-tls-wrap-no-abort.js
test-tls-wrap-timeout.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-tls-writewrap-leak.js
test-tls-zero-clear-in.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-trace-event.js test: increase strictness for test-trace-event 2017-03-01 10:52:12 -05:00
test-umask.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-url-domain-ascii-unicode.js url: move originFor, domainToAscii and domainToUnicode 2017-01-04 10:44:10 -06:00
test-url-format-whatwg.js url: extend url.format to support WHATWG URL 2017-02-14 11:52:00 -05:00
test-url-relative.js test: add test for url 2017-03-28 19:12:48 -04:00
test-url.js url: fix surrogate handling in encodeAuth() 2017-02-21 21:14:24 -05:00
test-utf8-scripts.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-util-format-shared-arraybuffer.js
test-util-format.js util: add %i and %f formatting specifiers 2017-04-10 13:22:41 -04:00
test-util-inherits.js test: cleanup test-util-inherits.js 2017-05-02 15:22:45 -05:00
test-util-inspect-proxy.js test: add second argument to assert.throws() 2017-03-28 19:26:53 -04:00
test-util-inspect-simd.js test,util: remove lint workarounds 2017-01-27 08:12:02 -05:00
test-util-inspect.js test: add arrow functions to test-util-inspect 2017-05-02 12:38:00 -05:00
test-util-internal.js util, debugger: remove internalUtil.error 2017-02-22 21:05:10 +01:00
test-util-log.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-util-sigint-watchdog.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
test-util.js test: remove eslint comments from test-util.js 2017-05-02 15:22:46 -05:00
test-v8-flag-type-check.js test: replace assertion error check with regex 2017-05-02 12:46:17 -05:00
test-v8-flags.js test: replace assertion error check with regex 2017-05-02 12:46:17 -05:00
test-v8-interceptStrings-not-Symbols.js
test-v8-stats.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-vm-basic.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-cached-data.js test: improve test-vm-cached-data.js 2017-03-28 19:12:49 -04:00
test-vm-context-async-script.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-context-property-forwarding.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-context.js test: refactored context type err message to regex 2017-05-02 12:46:17 -05:00
test-vm-create-and-run-in-context.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-vm-create-context-accessors.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-create-context-arg.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-create-context-circular-reference.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-vm-cross-context.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-debug-context.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-vm-deleting-property.js src: fix delete operator on vm context 2017-02-14 11:52:34 -05:00
test-vm-function-declaration.js test: fix misleading comment 2017-03-28 19:26:59 -04:00
test-vm-function-redefinition.js test: move test-vm-function-redefinition to parallel 2017-02-14 11:52:13 -05:00
test-vm-global-assignment.js test: add regression tests for vm bugs 2017-01-30 12:09:02 -05:00
test-vm-global-define-property.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-vm-global-identity.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-harmony-symbols.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-indexed-properties.js test: added test for indexed properties 2017-03-20 10:37:15 -04:00
test-vm-is-context.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-low-stack-space.js
test-vm-new-script-new-context.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-vm-new-script-this-context.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-vm-preserves-property.js test: improve code in test-vm-preserves-property 2017-01-04 10:44:06 -06:00
test-vm-property-not-on-sandbox.js test: add vm module edge cases 2017-02-14 11:52:35 -05:00
test-vm-proxies.js test: failing behaviour on sandboxed Proxy 2017-03-20 10:38:00 -04:00
test-vm-run-in-new-context.js test: add regex to assert.throws 2017-03-20 10:19:22 -04:00
test-vm-sigint-existing-handler.js test: increase coverage of vm 2017-02-24 02:16:26 +01:00
test-vm-sigint.js test: increase coverage of vm 2017-02-24 02:16:26 +01:00
test-vm-static-this.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-vm-strict-mode.js
test-vm-symbols.js test: improve code in test-vm-symbols 2017-01-04 10:44:06 -06:00
test-vm-syntax-error-message.js test: use common.fail() instead of assert(false) 2017-01-30 12:08:53 -05:00
test-vm-syntax-error-stderr.js
test-vm-timeout.js test: changed test1 of test-vm-timeout.js 2017-03-05 23:28:40 +01:00
test-whatwg-url-constructor.js url: spec-compliant URLSearchParams serializer 2017-05-01 11:16:05 -05:00
test-whatwg-url-domainto.js url: error when domainTo*() is called w/o argument 2017-05-01 11:16:06 -05:00
test-whatwg-url-historical.js test, url: synchronize WPT url tests 2017-02-21 21:14:24 -05:00
test-whatwg-url-inspect.js url: always show password for URL instances 2017-05-02 15:22:44 -05:00
test-whatwg-url-origin.js test: remove WHATWG URL test data file extension 2017-02-25 11:24:32 -05:00
test-whatwg-url-parsing.js url: show input in parse error message 2017-03-28 19:06:18 -04:00
test-whatwg-url-properties.js test: add more WHATWG URL origin tests 2017-03-13 11:19:36 -04:00
test-whatwg-url-searchparams-append.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-constructor.js url: spec-compliant URLSearchParams serializer 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-delete.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-entries.js test, url: synchronize WPT url tests 2017-02-21 21:14:24 -05:00
test-whatwg-url-searchparams-foreach.js test, url: synchronize WPT url tests 2017-02-21 21:14:24 -05:00
test-whatwg-url-searchparams-get.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-getall.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-has.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-inspect.js test: add test for URLSearchParams inspection 2017-02-25 11:10:02 -05:00
test-whatwg-url-searchparams-keys.js test, url: synchronize WPT url tests 2017-02-21 21:14:24 -05:00
test-whatwg-url-searchparams-set.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-sort.js test: test bottom-up merge sort in URLSearchParams 2017-02-25 11:10:04 -05:00
test-whatwg-url-searchparams-stringifier.js url: spec-compliant URLSearchParams serializer 2017-05-01 11:16:05 -05:00
test-whatwg-url-searchparams-values.js test, url: synchronize WPT url tests 2017-02-21 21:14:24 -05:00
test-whatwg-url-searchparams.js url: spec-compliant URLSearchParams parser 2017-05-01 11:16:05 -05:00
test-whatwg-url-setters.js url: prioritize toString when stringifying 2017-05-01 11:16:05 -05:00
test-whatwg-url-tojson.js test: remove eslint comments 2017-05-02 15:22:46 -05:00
test-whatwg-url-tostringtag.js test, url: synchronize WPT url tests 2017-02-21 21:14:24 -05:00
test-writedouble.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-writefloat.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-writeint.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-writeuint.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zerolengthbufferbug.js test: add common.mustNotCall() 2017-02-14 11:52:23 -05:00
test-zlib-close-after-error.js
test-zlib-close-after-write.js
test-zlib-const.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-convenience-methods.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-create-raw.js
test-zlib-deflate-constructors.js
test-zlib-dictionary-fail.js
test-zlib-dictionary.js
test-zlib-flush-drain.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-flush-flags.js
test-zlib-flush.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-zlib-from-concatenated-gzip.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-from-gzip-with-trailing-garbage.js test: improve zlib-from-gzip-with-trailing-garbage 2017-01-27 08:11:53 -05:00
test-zlib-from-gzip.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-from-string.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-invalid-input.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-zlib-not-string-or-buffer.js
test-zlib-params.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-zlib-random-byte-pipes.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-sync-no-event.js test: s/assert.notEqual()/assert.notStrictEqual()/ 2017-01-30 12:08:35 -05:00
test-zlib-truncated.js test: increase usage of assert.ifError() 2017-01-30 12:08:25 -05:00
test-zlib-unzip-one-byte-chunks.js
test-zlib-write-after-close.js test: throw check in test-zlib-write-after-close 2017-02-24 02:16:27 +01:00
test-zlib-write-after-flush.js test: s/assert.equal/assert.strictEqual/ 2017-01-30 12:08:40 -05:00
test-zlib-zero-byte.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
test-zlib.js test: use eslint to fix var->const/let 2017-01-30 12:08:39 -05:00
testcfg.py