mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #14 from overleaf/jpa-monorepo-prep
[misc] prepare for monorepo
This commit is contained in:
commit
27bbd4ec65
5 changed files with 4953 additions and 11 deletions
4
libraries/object-persistor/.gitignore
vendored
4
libraries/object-persistor/.gitignore
vendored
|
@ -1,3 +1,5 @@
|
|||
/node_modules
|
||||
package-lock.json
|
||||
*.swp
|
||||
|
||||
.npmrc
|
||||
Dockerfile
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
12.18.0
|
4945
libraries/object-persistor/package-lock.json
generated
Normal file
4945
libraries/object-persistor/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -163,9 +163,9 @@ module.exports = class FSPersistor extends AbstractPersistor {
|
|||
|
||||
try {
|
||||
await Promise.all(
|
||||
(await fsGlob(`${location}/${filteredName}_*`)).map((file) =>
|
||||
fsUnlink(file)
|
||||
)
|
||||
(
|
||||
await fsGlob(`${location}/${filteredName}_*`)
|
||||
).map((file) => fsUnlink(file))
|
||||
)
|
||||
} catch (err) {
|
||||
throw PersistorHelper.wrapError(
|
||||
|
|
|
@ -195,9 +195,7 @@ describe('MigrationPersistorTests', function () {
|
|||
})
|
||||
|
||||
it('should send a stream to the primary', function () {
|
||||
expect(
|
||||
primaryPersistor.sendStream
|
||||
).to.have.been.calledWithExactly(
|
||||
expect(primaryPersistor.sendStream).to.have.been.calledWithExactly(
|
||||
bucket,
|
||||
key,
|
||||
sinon.match.instanceOf(Stream.PassThrough),
|
||||
|
@ -476,9 +474,7 @@ describe('MigrationPersistorTests', function () {
|
|||
})
|
||||
|
||||
it('should send the file to the primary', function () {
|
||||
expect(
|
||||
primaryPersistor.sendStream
|
||||
).to.have.been.calledWithExactly(
|
||||
expect(primaryPersistor.sendStream).to.have.been.calledWithExactly(
|
||||
bucket,
|
||||
destKey,
|
||||
sinon.match.instanceOf(Stream.PassThrough),
|
||||
|
|
Loading…
Reference in a new issue