Skip to content
Snippets Groups Projects
Commit 39f876aa authored by Alexander Rudolph's avatar Alexander Rudolph
Browse files

print env variables in test

parent 161929cd
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,11 @@ import { Client } from "pg";
import { QueryTypes, Sequelize } from "sequelize";
it("has the database", async () => {
console.log({
user: process.env.DB_USER,
host: process.env.DB_HOST,
password: process.env.DB_PASSWORD,
})
const client = new Client({
user: process.env.DB_USER,
host: process.env.DB_HOST,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment