From e2b7c0ea44b9c958f66d0cbd59fec597008f4793 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Sun, 16 Apr 2023 13:56:37 +0530 Subject: [PATCH] refactor: update db file path Signed-off-by: Pranav C --- tests/playwright/setup/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/setup/db.ts b/tests/playwright/setup/db.ts index 9f9ad03765..350b41eddb 100644 --- a/tests/playwright/setup/db.ts +++ b/tests/playwright/setup/db.ts @@ -55,7 +55,7 @@ const mysqlExec = async query => { async function sqliteExec(query) { const parallelIndex = process.env.TEST_PARALLEL_INDEX; const rootProjectDir = __dirname.replace('/tests/playwright/setup', ''); - await sqliteDb.open(`${rootProjectDir}/packages/nocodb/test_sakila_${parallelIndex}.db`); + await sqliteDb.open(`${rootProjectDir}/packages/nocodb-nest/test_sakila_${parallelIndex}.db`); await sqliteDb.run(query); await sqliteDb.close();