()
| 3 | import runWorkbenchTests from "./workbenchTests/index.js"; |
| 4 | |
| 5 | async function workbench() { |
| 6 | const database = new Database(getConfig()); |
| 7 | |
| 8 | await runWorkbenchTests(database); |
| 9 | |
| 10 | database.close(); |
| 11 | process.exit(0); |
| 12 | } |
| 13 | |
| 14 | workbench(); |
no test coverage detected