9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
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)
|
|
})
|