mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fix settings test
This commit is contained in:
parent
00fa99564e
commit
1e4e68c64a
1 changed files with 3 additions and 6 deletions
|
@ -4,19 +4,16 @@ chai = require('chai')
|
|||
should = chai.should()
|
||||
expect = chai.expect
|
||||
modulePath = "../../../app/js/BucketController.js"
|
||||
SandboxedModule = require('sandboxed-module')
|
||||
|
||||
describe "Settings", ->
|
||||
describe "s3", ->
|
||||
it "should use JSONified env var if present", (done)->
|
||||
s3_settings =
|
||||
key: 'default_key'
|
||||
secret: 'default_secret'
|
||||
bucket1:
|
||||
auth_key: 'bucket1_key'
|
||||
auth_secret: 'bucket1_secret'
|
||||
process.env['S3_CREDENTIALS'] = JSON.stringify s3_settings
|
||||
process.env['S3_BUCKET_CREDENTIALS'] = JSON.stringify s3_settings
|
||||
|
||||
settings =require('settings-sharelatex')
|
||||
expect(settings.filestore.s3).to.deep.equal s3_settings
|
||||
settings = require("settings-sharelatex")
|
||||
expect(settings.filestore.s3BucketCreds).to.deep.equal s3_settings
|
||||
done()
|
||||
|
|
Loading…
Reference in a new issue