Skip to content

Commit

Permalink
✅ Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Dec 26, 2022
1 parent 08d4172 commit f6856ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Firebird from "node-firebird";
import client from "../src";
import fs from "fs";
import path from "path";
import os from "os";

const generateConfig = () => ({
client,
Expand All @@ -12,7 +13,7 @@ const generateConfig = () => ({
user: process.env.ISC_USER || "SYSDBA",
password: process.env.ISC_PASSWORD || "masterkey",
database: path.join(
process.cwd(),
os.tmpdir(),
`firebird-knex-dialect-${Date.now()}.fdb`
),
lowercase_keys: true,
Expand Down

0 comments on commit f6856ca

Please sign in to comment.