mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-25 03:09:00 -06:00
15 lines
313 B
JavaScript
15 lines
313 B
JavaScript
import { Database } from "./database.js";
|
|
import { getConfig } from "./helpers.js";
|
|
import runWorkbenchTests from "./workbenchTests/index.js";
|
|
|
|
async function workbench() {
|
|
const database = new Database(getConfig());
|
|
|
|
await runWorkbenchTests(database);
|
|
|
|
database.close();
|
|
process.exit(0);
|
|
}
|
|
|
|
workbench();
|