Skip to content

Commit 238e00a

Browse files
committed
Test
1 parent 2995141 commit 238e00a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/pg-native.test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import test from 'node:test';
33
import pgvector from 'pgvector/pg';
44
import { SparseVector } from 'pgvector';
55

6-
test('pg-native example', {skip: true}, async () => {
6+
// @ts-ignore
7+
const isDeno = typeof Deno !== 'undefined';
8+
console.log(isDeno);
9+
10+
test('pg-native example', {skip: isDeno}, async () => {
711
// @ts-ignore
812
const { default: Client } = await import('pg-native');
913

0 commit comments

Comments
 (0)