node-postgres/packages/pg-esm-test/pg-cursor.test.js
Brian C ea06db5a13
Remove node: prefix from imports (#3584)
* Remove node: prefix from imports.
2026-01-20 12:07:49 -06:00

10 lines
227 B
JavaScript

import assert from '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())
})
})