• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2const common = require('../../common');
3const assert = require('assert');
4const { runCall } = require(`./build/${common.buildType}/binding`);
5
6runCall(5, common.mustCall((err, val) => {
7  assert.strictEqual(err, null);
8  assert.strictEqual(val, 10);
9  process.nextTick(common.mustCall());
10}));
11