summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl.js
diff options
context:
space:
mode:
authorgwer <webholt@gmail.com>2017-04-23 02:01:54 +0300
committerAlexey Orlenko <eaglexrlnk@gmail.com>2017-04-30 04:08:46 +0300
commit01422769775a2ce7dfef8aa6dbda2d326f002e13 (patch)
treee3255f3dc9fd66fd3fb2a09c1fd4d39c2d81400f /test/parallel/test-repl.js
parent0324ac686ce1c8ffc5a81e6a8290b6c5c7fd04fd (diff)
downloadandroid-node-v8-01422769775a2ce7dfef8aa6dbda2d326f002e13.tar.gz
android-node-v8-01422769775a2ce7dfef8aa6dbda2d326f002e13.tar.bz2
android-node-v8-01422769775a2ce7dfef8aa6dbda2d326f002e13.zip
test: replace indexOf with includes
Start the transition to Array.prototype.includes() and String.prototype.includes(). This commit refactors most of the comparisons of Array.prototype.indexOf() and String.prototype.indexOf() return values with -1 to the former methods in tests. PR-URL: https://github.com/nodejs/node/pull/12604 Refs: https://github.com/nodejs/node/issues/12586 Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'test/parallel/test-repl.js')
-rw-r--r--test/parallel/test-repl.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-repl.js b/test/parallel/test-repl.js
index 7a019cc554..824f4b094c 100644
--- a/test/parallel/test-repl.js
+++ b/test/parallel/test-repl.js
@@ -88,7 +88,7 @@ function error_test() {
client_unix.expect :
JSON.stringify(client_unix.expect)));
- if (read_buffer.indexOf(prompt_unix) !== -1) {
+ if (read_buffer.includes(prompt_unix)) {
// if it's an exact match, then don't do the regexp
if (read_buffer !== client_unix.expect) {
let expect = client_unix.expect;
@@ -109,7 +109,7 @@ function error_test() {
tcp_test();
}
- } else if (read_buffer.indexOf(prompt_multiline) !== -1) {
+ } else if (read_buffer.includes(prompt_multiline)) {
// Check that you meant to send a multiline test
assert.strictEqual(prompt_multiline, client_unix.expect);
read_buffer = '';
@@ -454,7 +454,7 @@ function tcp_test() {
read_buffer += data.toString('ascii', 0, data.length);
console.error('TCP data: ' + JSON.stringify(read_buffer) +
', expecting ' + JSON.stringify(client_tcp.expect));
- if (read_buffer.indexOf(prompt_tcp) !== -1) {
+ if (read_buffer.includes(prompt_tcp)) {
assert.strictEqual(client_tcp.expect, read_buffer);
console.error('match');
read_buffer = '';
@@ -524,7 +524,7 @@ function unix_test() {
read_buffer += data.toString('ascii', 0, data.length);
console.error('Unix data: ' + JSON.stringify(read_buffer) +
', expecting ' + JSON.stringify(client_unix.expect));
- if (read_buffer.indexOf(prompt_unix) !== -1) {
+ if (read_buffer.includes(prompt_unix)) {
assert.strictEqual(client_unix.expect, read_buffer);
console.error('match');
read_buffer = '';