mirror of https://github.com/nodejs/node.git
15 lines
442 B
JavaScript
15 lines
442 B
JavaScript
'use strict';
|
|
|
|
const common = require('../../common');
|
|
const assert = require('assert');
|
|
|
|
// `addon` is referenced through the eval expression in testFile
|
|
const addon = require(`./build/${common.buildType}/test_general`);
|
|
|
|
const testCase = '(41.92 + 0.08);';
|
|
const expected = 42;
|
|
const actual = addon.testNapiRun(testCase);
|
|
|
|
assert.strictEqual(actual, expected);
|
|
assert.throws(() => addon.testNapiRun({ abc: 'def' }), /string was expected/);
|