mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
import assert from 'node:assert'
|
|
import { describe, it } from 'node:test'
|
|
import QueryStream from 'pg-query-stream'
|
|
|
|
describe('pg-query-stream', () => {
|
|
it('should export QueryStream constructor as default', () => {
|
|
assert.ok(new QueryStream())
|
|
})
|
|
})
|