mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
decaffeinate: Run post-processing cleanups on ContactsManagerTests.coffee and 1 other file
This commit is contained in:
parent
9c06e4fa9a
commit
afbc798fda
2 changed files with 15 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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"); });
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue