napi-rs/test_module/__test__/string.spec.ts

8 lines
212 B
TypeScript

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