项目文件夹

文件
T

15 行
247 B
JavaScript

import log from '@/helpers/log'
import cleanTestDbs from './clean-test-dbs'
/**
* Execute the cleaning test DBs script
*/
(async () => {
try {
await cleanTestDbs()
} catch (e) {
log.error(`Failed to clean test DBs: ${e}`)
}
})()