Skip to content

Commit

Permalink
test: improve error emssage reporting in testNapiRun.js
Browse files Browse the repository at this point in the history
PR-URL: #16821
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
Paul Ashfield authored and evanlucas committed Nov 13, 2017
1 parent f71f41d commit 5d3a4ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/addons-napi/test_general/testNapiRun.js
Expand Up @@ -7,6 +7,9 @@ const assert = require('assert');
// eslint-disable-next-line no-unused-vars
const addon = require(`./build/${common.buildType}/test_general`);

assert.strictEqual(addon.testNapiRun('(41.92 + 0.08);'), 42,
'napi_run_script() works correctly');
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/);

0 comments on commit 5d3a4ad

Please sign in to comment.