We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de05b6f commit 25dfa7eCopy full SHA for 25dfa7e
examples/hackernews/__integration-tests__/hackernews.spec.ts
@@ -9,9 +9,10 @@ import { schema } from '../src/schema.js';
9
10
const connectionString =
11
process.env['PG_CONNECTION_STRING'] ??
12
- 'postgres://postgres:postgres@localhost:5432/postgres?currentSchema=integration-tests';
13
-
+ 'postgres://postgres:postgres@localhost:5432/postgres?currentSchema=integrationTests';
+console.log(connectionString);
14
export async function resetDatabase(db: NodePgDatabase, schema: string) {
15
+ console.log(schema);
16
// sql query for resetting the database
17
const query = sql`
18
DROP SCHEMA IF EXISTS ${sql.raw(schema)} CASCADE;
0 commit comments