LongYinan 583a2ba5c8
chore(triples): update target list (#2879)
* chore(triples): update target list

* convert compat tests to esm

* Fix node 20 test
2025-08-15 18:31:56 +08:00

26 lines
655 B
TypeScript

import test from 'ava'
import { napiVersion } from '../napi-version'
// @ts-expect-error
import bindings from '../../index.node'
test('should set and get instance data', (t) => {
if (napiVersion >= 6) {
t.is(bindings.getInstanceData(), undefined)
bindings.setInstanceData()
t.is(bindings.getInstanceData(), 1024)
} else {
t.is(bindings.getInstanceData, undefined)
t.is(bindings.setInstanceData, undefined)
}
})
test('should throw if get instance data type mismatched', (t) => {
if (napiVersion >= 6) {
t.throws(bindings.getWrongTypeInstanceData)
} else {
t.is(bindings.getWrongTypeInstanceData, undefined)
}
})