napi-rs/examples/napi-compat-mode/__tests__/symbol.spec.ts
forehal a781a4f27e feat(cli): brand new cli tool with both cli and programmatical usage (#1492)
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
2023-04-06 11:04:53 +08:00

22 lines
648 B
TypeScript

import test from 'ava'
const bindings = require('../index.node')
test('should create named symbol', (t) => {
const symbol = bindings.createNamedSymbol()
t.true(typeof symbol === 'symbol')
t.is(symbol.toString(), 'Symbol(native)')
})
test('should create unnamed symbol', (t) => {
const symbol = bindings.createUnnamedSymbol()
t.true(typeof symbol === 'symbol')
t.is(symbol.toString(), 'Symbol()')
})
test('should create symbol from JsString', (t) => {
const fixture = 'N-API Symbol'
const symbol = bindings.createSymbolFromJsString(fixture)
t.true(typeof symbol === 'symbol')
t.is(symbol.toString(), `Symbol(${fixture})`)
})