mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 05:06:48 +00:00
feat(format): Formated all playwright code
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
const { PromisedDatabase } = require("promised-sqlite3");
|
||||
const sqliteDb = new PromisedDatabase();
|
||||
const { PromisedDatabase } = require('promised-sqlite3');
|
||||
const sqliteDb = new PromisedDatabase();
|
||||
|
||||
async function sqliteExec(query) {
|
||||
const rootProjectDir = __dirname.replace("/scripts/playwright/setup", "");
|
||||
const rootProjectDir = __dirname.replace('/scripts/playwright/setup', '');
|
||||
await sqliteDb.open(`${rootProjectDir}/packages/nocodb/test_noco.db`);
|
||||
|
||||
await sqliteDb.run(query);
|
||||
}
|
||||
|
||||
export default sqliteExec;
|
||||
export default sqliteExec;
|
||||
|
||||
Reference in New Issue
Block a user