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();