1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-21 15:51:49 +03:00
leon/scripts/run-clean-test-dbs.js

15 lines
271 B
JavaScript
Raw Normal View History

import { LogHelper } from '@/helpers/log-helper'
import cleanTestDbs from './clean-test-dbs'
/**
* Execute the cleaning test DBs script
*/
2022-09-03 14:12:41 +03:00
;(async () => {
try {
await cleanTestDbs()
} catch (e) {
LogHelper.error(`Failed to clean test DBs: ${e}`)
}
})()