napi-rs/test_module/__test__/either.spec.js

15 lines
399 B
JavaScript
Raw Normal View History

2020-07-18 03:00:48 +09:00
const test = require('ava')
const bindings = require('../index.node')
test('either should work', (t) => {
const fixture = 'napi'
t.is(bindings.eitherNumberString(1), 101)
t.is(bindings.eitherNumberString(fixture), `Either::B(${fixture})`)
})
test('dynamic argument length should work', (t) => {
t.is(bindings.dynamicArgumentLength(1), 101)
t.is(bindings.dynamicArgumentLength(), 42)
})