mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-15 21:04:23 +00:00
Merge pull request #99 from overleaf/bg-update-npm-packages
run npm update
This commit is contained in:
commit
428dcdf0ee
3 changed files with 1826 additions and 1326 deletions
3144
services/filestore/package-lock.json
generated
3144
services/filestore/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -22,7 +22,7 @@
|
|||
"dependencies": {
|
||||
"@overleaf/o-error": "^2.1.0",
|
||||
"async": "~0.2.10",
|
||||
"aws-sdk": "^2.1.39",
|
||||
"aws-sdk": "^2.628.0",
|
||||
"body-parser": "^1.2.0",
|
||||
"express": "^4.2.0",
|
||||
"fs-extra": "^1.0.0",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
const chai = require('chai')
|
||||
const { expect } = chai
|
||||
const SandboxedModule = require('sandboxed-module')
|
||||
|
||||
describe('Settings', function() {
|
||||
describe('s3', function() {
|
||||
|
@ -11,8 +12,9 @@ describe('Settings', function() {
|
|||
}
|
||||
}
|
||||
process.env.S3_BUCKET_CREDENTIALS = JSON.stringify(s3Settings)
|
||||
|
||||
const settings = require('settings-sharelatex')
|
||||
const settings = SandboxedModule.require('settings-sharelatex', {
|
||||
globals: { console }
|
||||
})
|
||||
expect(settings.filestore.s3BucketCreds).to.deep.equal(s3Settings)
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue