node/test/js-native-api/3_callbacks/test.js
Antoine du Hamel 53e325ffd0
test: ensure assertions are reachable in more folders
PR-URL: https://github.com/nodejs/node/pull/60411
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
2025-10-29 15:16:59 +00:00

22 lines
517 B
JavaScript

'use strict';
const common = require('../../common');
const assert = require('assert');
const addon = require(`./build/${common.buildType}/3_callbacks`);
addon.RunCallback(common.mustCall((msg) => {
assert.strictEqual(msg, 'hello world');
}));
function testRecv(desiredRecv) {
addon.RunCallbackWithRecv(common.mustCall(function() {
assert.strictEqual(this, desiredRecv);
}), desiredRecv);
}
testRecv(undefined);
testRecv(null);
testRecv(5);
testRecv(true);
testRecv('Hello');
testRecv([]);
testRecv({});