Skip to content

Commit 28b0e46

Browse files
committed
Test fixed for postgres
1 parent 7083512 commit 28b0e46

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tests/drivers/postgres/connection-test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ export default async function (this: TestConfig) {
1313

1414
const connection = this.driver.newConnection();
1515

16+
if (!(this.driver instanceof PostgreSqlDriver)) {
17+
return;
18+
}
19+
1620
await connection.ensureDatabase();
1721
// create table...
1822
await connection.executeQuery(`SELECT 1;`);

0 commit comments

Comments
 (0)