a781a4f27e
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
15 lines
466 B
TypeScript
15 lines
466 B
TypeScript
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)
|
|
})
|