mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/60411 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
23 lines
517 B
JavaScript
23 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({});
|