mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
10 lines
232 B
JavaScript
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())
|
|
})
|
|
})
|