mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 02:55:47 +00:00
11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
const { PromisedDatabase } = require("promised-sqlite3");
|
|
const sqliteDb = new PromisedDatabase();
|
|
|
|
async function sqliteExec(query) {
|
|
const rootProjectDir = __dirname.replace("/scripts/playwright/setup", "");
|
|
await sqliteDb.open(`${rootProjectDir}/packages/nocodb/test_noco.db`);
|
|
|
|
await sqliteDb.run(query);
|
|
}
|
|
|
|
export default sqliteExec; |