Skip to content

Commit

Permalink
fix: ci .env
Browse files Browse the repository at this point in the history
  • Loading branch information
fhur committed Mar 29, 2024
1 parent 8064e9f commit 874b522
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/tests/postgres.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ config();

export const sql = pg(
process.env.DATABASE_URL ??
'postgres://postgres:postgres@localhost:5432/pagila',
'postgres://postgres:postgres@localhost:5432/postgres',
);
2 changes: 1 addition & 1 deletion packages/backend/src/tests/queryEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dotenv.config();
export const pool = new Pool({
connectionString:
process.env.DATABASE_URL ??
'postgres://postgres:postgres@localhost:5432/pagila',
'postgres://postgres:postgres@localhost:5432/postgres',
});

export const queryEngine = new QueryEngine<DB>({
Expand Down
2 changes: 1 addition & 1 deletion packages/introspect/src/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('e2e', () => {
test('generate from pagila', () => {
introspect({
connectionString:
'postgres://postgres:password@localhost:5432/pagila',
'postgres://postgres:password@localhost:5432/postgres',
});
});
});

0 comments on commit 874b522

Please sign in to comment.