mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 07:45:26 -05:00
9953822175
Move acceptance test mocks to nonstandard ports and add options for running locally GitOrigin-RevId: bd8f70ac8d80599daccc51cfe7b90a2ad8d8c3d8
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
const RedisWrapper = require('../../../../app/src/infrastructure/RedisWrapper')
|
|
const client = RedisWrapper.client('ratelimiter')
|
|
|
|
module.exports = {
|
|
initialize() {
|
|
beforeEach('clear redis', function (done) {
|
|
client.flushdb(done)
|
|
})
|
|
},
|
|
}
|