Skip to content

Commit

Permalink
Fixed CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jul 16, 2024
1 parent 57e83e8 commit 4b87e47
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/pg.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ test('pool', async () => {
await pool.end();
});

test('pg-native', () => {
function isDeno() {
return typeof Deno !== 'undefined';
}

test('pg-native', {skip: isDeno()}, () => {
const client = new Client();
client.connectSync('postgres://localhost/pgvector_node_test');

Expand Down

0 comments on commit 4b87e47

Please sign in to comment.