mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-24 22:04:47 +03:00
15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
import { LogHelper } from '@/helpers/log-helper'
|
|
|
|
import cleanTestDbs from './clean-test-dbs'
|
|
|
|
/**
|
|
* Execute the cleaning test DBs script
|
|
*/
|
|
;(async () => {
|
|
try {
|
|
await cleanTestDbs()
|
|
} catch (e) {
|
|
LogHelper.error(`Failed to clean test DBs: ${e}`)
|
|
}
|
|
})()
|