napi-rs/examples/napi/__tests__/object-attr.spec.ts

22 lines
419 B
TypeScript
Raw Normal View History

import { createRequire } from 'node:module'
import test from 'ava'
const require = createRequire(import.meta.url)
const {
NotWritableClass,
}: typeof import('../index.js') = require('../index.node')
test('Not Writable Class', (t) => {
const obj = new NotWritableClass('1')
t.throws(() => {
obj.name = '2'
})
obj.setName('2')
t.is(obj.name, '2')
t.throws(() => {
obj.setName = () => {}
})
})