overleaf/services/history-v1/benchmarks/index.js

18 lines
336 B
JavaScript
Raw Normal View History

const testSetup = require('../test/setup')
const blobStoreSuite = require('./blob_store')
async function main() {
await testSetup.setupPostgresDatabase()
await testSetup.createGcsBuckets()
await blobStoreSuite()
}
main()
.then(() => {
process.exit(0)
})
.catch(err => {
console.error(err)
process.exit(1)
})