napi-rs/test_module/__test__/string.spec.js
2020-08-03 14:34:58 +08:00

8 lines
217 B
JavaScript

const test = require('ava')
const bindings = require('../index.node')
test('should be able to concat string', (t) => {
const fixture = 'JavaScript 🌳 你好 napi'
t.snapshot(bindings.concatString(fixture))
})