summaryrefslogtreecommitdiff
path: root/test/addons/hello-world-esm/test.mjs
blob: d98de5bf87c771cad5296452e889aa356edb8d9e (plain)
1
2
3
4
5
6
/* eslint-disable node-core/required-modules */

import assert from 'assert';
import binding from './build/binding.node';
assert.strictEqual(binding.hello(), 'world');
console.log('binding.hello() =', binding.hello());