UNPKG

gaussdb-esm-test

Version:

A test module for GaussDB with ESM support

10 lines (8 loc) 242 B
import assert from 'node:assert' import { describe, it } from 'node:test' import Cursor from 'gaussdb-cursor' describe('gaussdb-cursor', () => { it('should export Cursor constructor as default', () => { assert.ok(new Cursor()) }) })