mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
17 lines
481 B
TypeScript
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)
|
|
})
|