fix: db port used in tests

This commit is contained in:
2024-06-13 05:53:37 -04:00
parent 168ea0a88f
commit 64b144612a
3 changed files with 4 additions and 4 deletions

View File

@@ -10,8 +10,8 @@ console.error = () => {};
describe("requests the /watch-status route", () => {
const db = getDb({
TURSO_URL: "http://127.0.0.1:3000",
TURSO_AUTH_TOKEN: "asd",
TURSO_URL: process.env.TURSO_URL ?? "http://127.0.0.1:3000",
TURSO_AUTH_TOKEN: process.env.TURSO_AUTH_TOKEN ?? "asd",
});
beforeEach(async () => {