From 1aab5bd0866e795343ea93fd0a1a6538d20f4cce Mon Sep 17 00:00:00 2001 From: decaffeinate Date: Mon, 17 Feb 2020 07:38:18 +0000 Subject: [PATCH] decaffeinate: Run post-processing cleanups on ContactsApp.coffee and 1 other file --- .../contacts/test/acceptance/coffee/ContactsApp.js | 5 +++++ .../test/acceptance/coffee/GettingContactsTests.js | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/services/contacts/test/acceptance/coffee/ContactsApp.js b/services/contacts/test/acceptance/coffee/ContactsApp.js index aff82e25cc..97e6d8148d 100644 --- a/services/contacts/test/acceptance/coffee/ContactsApp.js +++ b/services/contacts/test/acceptance/coffee/ContactsApp.js @@ -1,3 +1,8 @@ +/* eslint-disable + handle-callback-err, +*/ +// TODO: This file was created by bulk-decaffeinate. +// Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS101: Remove unnecessary use of Array.from diff --git a/services/contacts/test/acceptance/coffee/GettingContactsTests.js b/services/contacts/test/acceptance/coffee/GettingContactsTests.js index 60ab8c98be..c2598e6bd4 100644 --- a/services/contacts/test/acceptance/coffee/GettingContactsTests.js +++ b/services/contacts/test/acceptance/coffee/GettingContactsTests.js @@ -1,3 +1,11 @@ +/* eslint-disable + camelcase, + handle-callback-err, + no-undef, + no-unused-vars, +*/ +// TODO: This file was created by bulk-decaffeinate. +// Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns @@ -29,7 +37,7 @@ describe("Getting Contacts", function() { method: "GET", url: `${HOST}/user/${this.user_id}/contacts`, json: true - }, function(error, response, body) { + }, (error, response, body) => { response.statusCode.should.equal(200); body.contact_ids.should.deep.equal([]); return done();