napi-rs/examples/napi-compat-mode/__test__/napi6/instance-data.spec.ts
forehalo 2467b7139b
Introduce #[napi] procedural macro to automation development boilerplate (#696)
* napi procedural macro for basic rust/JavaScript types
* introduce the `compat-mode` for `napi` and `napi-derive` crates for backward compatible
* remove #[inline] and let compiler to decide the inline behavior
* cli now can produce the `.d.ts` file for native binding
* many tests and example for the new procedural macro

Co-authored-by: LongYinan <lynweklm@gmail.com>
2021-09-23 01:29:09 +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)
}
})