From 2bb2caf7b3fa8aac1a6148ddbb23f8b4c12d0efc Mon Sep 17 00:00:00 2001 From: Simon Detheridge Date: Tue, 7 Jan 2020 09:46:53 +0000 Subject: [PATCH] Clean up settings tests --- .../filestore/test/unit/js/SettingsTests.js | 32 ++++++------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/services/filestore/test/unit/js/SettingsTests.js b/services/filestore/test/unit/js/SettingsTests.js index 472c6d1179..4563449fde 100644 --- a/services/filestore/test/unit/js/SettingsTests.js +++ b/services/filestore/test/unit/js/SettingsTests.js @@ -1,33 +1,19 @@ -/* eslint-disable - camelcase, - 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 - * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md - */ -const { assert } = require('chai') -const sinon = require('sinon') const chai = require('chai') -const should = chai.should() const { expect } = chai -const modulePath = '../../../app/js/BucketController.js' -describe('Settings', () => - describe('s3', () => - it('should use JSONified env var if present', function(done) { - const s3_settings = { +describe('Settings', function() { + describe('s3', function() { + it('should use JSONified env var if present', function() { + const s3Settings = { bucket1: { auth_key: 'bucket1_key', auth_secret: 'bucket1_secret' } } - process.env.S3_BUCKET_CREDENTIALS = JSON.stringify(s3_settings) + process.env.S3_BUCKET_CREDENTIALS = JSON.stringify(s3Settings) const settings = require('settings-sharelatex') - expect(settings.filestore.s3BucketCreds).to.deep.equal(s3_settings) - return done() - }))) + expect(settings.filestore.s3BucketCreds).to.deep.equal(s3Settings) + }) + }) +})