napi-rs/test_module/__test__/create-external.spec.ts

16 lines
466 B
TypeScript
Raw Normal View History

import test from 'ava'
const bindings = require('../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)
})