mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Decaf cleanup: camel case variables
This commit is contained in:
parent
75f9b0ff10
commit
f99125c65a
1 changed files with 19 additions and 16 deletions
|
@ -1,12 +1,9 @@
|
||||||
/* eslint-disable
|
|
||||||
camelcase,
|
|
||||||
*/
|
|
||||||
const sinon = require('sinon')
|
const sinon = require('sinon')
|
||||||
const chai = require('chai')
|
const chai = require('chai')
|
||||||
chai.should()
|
chai.should()
|
||||||
const { expect } = require('chai')
|
const { expect } = require('chai')
|
||||||
const Settings = require('settings-sharelatex')
|
const Settings = require('settings-sharelatex')
|
||||||
const rclient_du = require('redis-sharelatex').createClient(
|
const docUpdaterRedis = require('redis-sharelatex').createClient(
|
||||||
Settings.redis.documentupdater
|
Settings.redis.documentupdater
|
||||||
)
|
)
|
||||||
const Keys = Settings.redis.documentupdater.key_schema
|
const Keys = Settings.redis.documentupdater.key_schema
|
||||||
|
@ -135,13 +132,16 @@ describe('Setting a document', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should leave the document in redis', function (done) {
|
it('should leave the document in redis', function (done) {
|
||||||
rclient_du.get(Keys.docLines({ doc_id: this.doc_id }), (error, lines) => {
|
docUpdaterRedis.get(
|
||||||
if (error) {
|
Keys.docLines({ doc_id: this.doc_id }),
|
||||||
throw error
|
(error, lines) => {
|
||||||
|
if (error) {
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
expect(JSON.parse(lines)).to.deep.equal(this.newLines)
|
||||||
|
done()
|
||||||
}
|
}
|
||||||
expect(JSON.parse(lines)).to.deep.equal(this.newLines)
|
)
|
||||||
done()
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -197,13 +197,16 @@ describe('Setting a document', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should remove the document from redis', function (done) {
|
it('should remove the document from redis', function (done) {
|
||||||
rclient_du.get(Keys.docLines({ doc_id: this.doc_id }), (error, lines) => {
|
docUpdaterRedis.get(
|
||||||
if (error) {
|
Keys.docLines({ doc_id: this.doc_id }),
|
||||||
throw error
|
(error, lines) => {
|
||||||
|
if (error) {
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
expect(lines).to.not.exist
|
||||||
|
done()
|
||||||
}
|
}
|
||||||
expect(lines).to.not.exist
|
)
|
||||||
done()
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue