UNPKG
gaussdb-esm-test
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
A test module for GaussDB with ESM support
gaussdb-esm-test
/
gaussdb-cursor.test.js
10 lines
(8 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
()) }) })