LongYinan 583a2ba5c8
chore(triples): update target list (#2879)
* chore(triples): update target list

* convert compat tests to esm

* Fix node 20 test
2025-08-15 18:31:56 +08:00

17 lines
429 B
TypeScript

import test from 'ava'
// @ts-expect-error
import bindings from '../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()')
})