mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:51:57 +00:00
13 lines
331 B
JavaScript
13 lines
331 B
JavaScript
const shelljs = require('shelljs')
|
|
|
|
const { decompressRecordings, deleteRecordings } = require('./utils')
|
|
|
|
// eslint-disable-next-line no-void
|
|
void (async () => {
|
|
await decompressRecordings()
|
|
shelljs.exec('POLLYJS_MODE=replay yarn run-integration', async code => {
|
|
await deleteRecordings()
|
|
process.exit(code)
|
|
})
|
|
})()
|