node-postgres/packages/pg-esm-test/pg-cursor.test.js
2025-04-21 13:57:24 -05:00

10 lines
232 B
JavaScript

import assert from 'node:assert'
import { describe, it } from 'node:test'
import Cursor from 'pg-cursor'
describe('pg-cursor', () => {
it('should export Cursor constructor as default', () => {
assert.ok(new Cursor())
})
})