From dc09bbe3eed0944c0b9a14bc4ac0da20c8865b15 Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Thu, 15 Oct 2015 15:16:28 -0700 Subject: [PATCH] test: fix test-repl-tab-complete after V8 upgrade MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Array#includes is now available. Ref: https://github.com/nodejs/node/pull/3481 PR-URL: https://github.com/nodejs/node/pull/4106 Reviewed-By: bnoordhuis - Ben Noordhuis Reviewed-By: targos - Michaƫl Zasso Reviewed-By: rvagg - Rod Vagg --- test/parallel/test-repl-tab-complete.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parallel/test-repl-tab-complete.js b/test/parallel/test-repl-tab-complete.js index 6bf7d5059d0116..362e967146b275 100644 --- a/test/parallel/test-repl-tab-complete.js +++ b/test/parallel/test-repl-tab-complete.js @@ -258,6 +258,7 @@ var array_elements = [ [ 'ary.find', 'ary.findIndex', 'ary.forEach', + 'ary.includes', 'ary.indexOf', 'ary.join', 'ary.keys',