summaryrefslogtreecommitdiff
path: root/test/addons-napi/test_symbol/test2.js
blob: 4ff0955c5dbe35ab3469966f090189ed0e4ba4cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';
const common = require('../../common');
const assert = require('assert');

// testing api calls for symbol
const test_symbol = require(`./build/${common.buildType}/binding`);

const fooSym = test_symbol.New('foo');
const myObj = {};
myObj['foo'] = 'bar';
myObj[fooSym] = 'baz';
Object.keys(myObj); // -> [ 'foo' ]
Object.getOwnPropertyNames(myObj); // -> [ 'foo' ]
Object.getOwnPropertySymbols(myObj); // -> [ Symbol(foo) ]
assert.strictEqual(Object.getOwnPropertySymbols(myObj)[0], fooSym);