Skip to content

Commit

Permalink
Fix polyfill imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jawj committed Jan 21, 2025
1 parent b3ac84e commit 2cf8a90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/cli/httpTransaction.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertType, beforeAll, expect, test } from 'vitest';
import { polyfill } from './polyfill';
import { polyfill } from '../polyfill';
import { neon } from '../..';

const DATABASE_URL = process.env.VITE_NEON_DB_URL!;
Expand Down
2 changes: 1 addition & 1 deletion tests/cli/ws.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test, describe, beforeAll, vi, assertType } from 'vitest';
import { Pool as PgPool, type QueryResult } from 'pg';
import * as subtls from 'subtls';
import { sampleQueries } from './sampleQueries';
import { polyfill } from './polyfill';
import { polyfill } from '../polyfill';
import { ISRGX1Cert } from './subtlsCert';
import { neon, neonConfig, Pool as WsPool, Client as WsClient } from '../..';

Expand Down

0 comments on commit 2cf8a90

Please sign in to comment.