mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
16 lines
414 B
TypeScript
16 lines
414 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()')
|
|
})
|