We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently it uses assert(typeof ... === 'number') but it would be more expressive in case of failure to use assert.strictEqual(typeof ..., 'number').
assert(typeof ... === 'number')
assert.strictEqual(typeof ..., 'number')
The text was updated successfully, but these errors were encountered:
4ce40d2
test: use assert.strictEqual()
fe758b7
Fixes: nodejs/node-addon-api#775 PR-URL: nodejs/node-addon-api#777 Reviewed-By: Nicola Del Gobbo <nicoladelgobbo@gmail.com> Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
d8f1b04
13faf2d
323f97e
Successfully merging a pull request may close this issue.
Currently it uses
assert(typeof ... === 'number')
but it would be more expressive in case of failure to useassert.strictEqual(typeof ..., 'number')
.The text was updated successfully, but these errors were encountered: