napi-rs/examples/napi-compat-mode/__tests__/napi6/instance-data.spec.ts
forehal a781a4f27e feat(cli): brand new cli tool with both cli and programmatical usage (#1492)
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
2023-04-06 11:04:53 +08:00

24 lines
640 B
TypeScript

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