From 8452c9610e27258f95606b5c1be97a36a2b2619a Mon Sep 17 00:00:00 2001 From: fratzinger <22286818+fratzinger@users.noreply.github.com> Date: Mon, 13 May 2024 13:06:26 +0200 Subject: [PATCH] chore: console.log connection --- test/connection.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/connection.ts b/test/connection.ts index 859aa4b..fe94924 100644 --- a/test/connection.ts +++ b/test/connection.ts @@ -4,6 +4,8 @@ import { Sequelize } from 'sequelize'; export default (DB?: 'postgres' | 'mysql' | string) => { const logging: Options['logging'] = false; + console.log('DB:', DB); + if (DB === 'postgres') { return new Sequelize( process.env.POSTGRES_DB ?? 'sequelize',