mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
feat: print which dialect is being used when calling createTestDB
This commit is contained in:
parent
13d346afbd
commit
01966496c1
1 changed files with 2 additions and 0 deletions
|
|
@ -102,6 +102,8 @@ export const createTestDB = async (databaseUrl?: string) => {
|
|||
dialect = 'sqlite';
|
||||
}
|
||||
|
||||
console.warn(`Using: ${dialect}`);
|
||||
|
||||
let kysely: Kysely<DittoTables>;
|
||||
|
||||
if (dialect === 'sqlite') {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue