mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
import assert from 'assert'
|
|
import { describe, it } from 'node:test'
|
|
import Pool from 'pg-pool'
|
|
|
|
describe('pg-pool', () => {
|
|
it('should export Pool constructor', () => {
|
|
assert.ok(new Pool())
|
|
})
|
|
})
|