napi-rs/test_module/__test__/get-napi-version.spec.ts

10 lines
249 B
TypeScript
Raw Normal View History

import test from 'ava'
const bindings = require('../index.node')
test('should get napi version', (t) => {
const napiVersion = bindings.getNapiVersion()
t.true(typeof napiVersion === 'number')
t.is(`${napiVersion}`, process.versions.napi)
})