mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 07:46:02 +00:00
12 lines
345 B
TypeScript
12 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;
|