UNPKG

gaussdb-esm-test

Version:

A test module for GaussDB with ESM support

10 lines (8 loc) 221 B
import assert from 'node:assert' import { describe, it } from 'node:test' import Pool from 'gaussdb-pool' describe('gaussdb-pool', () => { it('should export Pool constructor', () => { assert.ok(new Pool()) }) })