Skip to content

Commit 25dfa7e

Browse files
committed
no dash in name ok
1 parent de05b6f commit 25dfa7e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/hackernews/__integration-tests__/hackernews.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ import { schema } from '../src/schema.js';
99

1010
const connectionString =
1111
process.env['PG_CONNECTION_STRING'] ??
12-
'postgres://postgres:postgres@localhost:5432/postgres?currentSchema=integration-tests';
13-
12+
'postgres://postgres:postgres@localhost:5432/postgres?currentSchema=integrationTests';
13+
console.log(connectionString);
1414
export async function resetDatabase(db: NodePgDatabase, schema: string) {
15+
console.log(schema);
1516
// sql query for resetting the database
1617
const query = sql`
1718
DROP SCHEMA IF EXISTS ${sql.raw(schema)} CASCADE;

0 commit comments

Comments
 (0)