napi-rs/examples/napi-compat-mode/__tests__/create-external.spec.ts
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

17 lines
481 B
TypeScript

import test from 'ava'
// @ts-expect-error
import bindings from '../index.node'
test('should create external object and get it back', (t) => {
const fixture = 42
const externalObject = bindings.createExternal(42)
t.is(bindings.getExternalCount(externalObject), fixture)
})
test('should create external with size hint', (t) => {
const fixture = 42
const externalObject = bindings.createExternalWithHint(42)
t.is(bindings.getExternalCount(externalObject), fixture)
})