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