napi-rs/test_module/__test__/either.spec.js
2020-07-18 02:11:49 +08:00

14 lines
399 B
JavaScript

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)
})