From afbc798fda0a3cae60db16e8d3c50898fadb61ad Mon Sep 17 00:00:00 2001 From: decaffeinate Date: Mon, 17 Feb 2020 07:38:06 +0000 Subject: [PATCH] decaffeinate: Run post-processing cleanups on ContactsManagerTests.coffee and 1 other file --- .../contacts/test/unit/coffee/ContactsManagerTests.js | 8 +++++++- .../contacts/test/unit/coffee/HttpControllerTests.js | 9 ++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/services/contacts/test/unit/coffee/ContactsManagerTests.js b/services/contacts/test/unit/coffee/ContactsManagerTests.js index 274822d331..551b30c837 100644 --- a/services/contacts/test/unit/coffee/ContactsManagerTests.js +++ b/services/contacts/test/unit/coffee/ContactsManagerTests.js @@ -1,3 +1,9 @@ +/* eslint-disable + no-return-assign, + 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 @@ -33,7 +39,7 @@ describe("ContactManager", function() { return this.callback = sinon.stub(); }); - afterEach(() => tk.reset()); + afterEach(function() { return tk.reset(); }); describe("touchContact", function() { beforeEach(function() { diff --git a/services/contacts/test/unit/coffee/HttpControllerTests.js b/services/contacts/test/unit/coffee/HttpControllerTests.js index 2bece42811..d91475ce07 100644 --- a/services/contacts/test/unit/coffee/HttpControllerTests.js +++ b/services/contacts/test/unit/coffee/HttpControllerTests.js @@ -1,3 +1,10 @@ +/* eslint-disable + mocha/no-pending-tests, + no-return-assign, + 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 @@ -147,6 +154,6 @@ describe("HttpController", function() { }); }); - return describe("with a holding account", () => it("should not return holding accounts")); + return describe("with a holding account", function() { return it("should not return holding accounts"); }); }); }); \ No newline at end of file