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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I'm not seeing power-assert goodness when using Node.js v8. Using the example in the example directory:
$ node --version v8.0.0 $ npm install --silent <snip/> $ npm test > example@1.0.0 test /Users/dlee/tmp/intelli-espower-loader/example > mocha FailTest 1) is failed PassTest ✓ is passed 1 passing (33ms) 1 failing 1) FailTest is failed: AssertionError [ERR_ASSERTION]: { name: 'Tom object' } deepEqual { name: 'Mom object' } + expected - actual { - "name": "Tom object" + "name": "Mom object" } at Decorator.concreteAssert (node_modules/empower/lib/decorator.js:61:21) at Function.decoratedAssert [as deepEqual] (node_modules/empower/lib/decorate.js:44:26) at Context.<anonymous> (test/fail-test.js:9:16)
I should have seen the super-awesome:
assert.deepEqual(object, { name: "Mom object" }) | | | Object{name:"Mom object"} Object{name:"Tom object"}
The text was updated successfully, but these errors were encountered:
@leedm777 Thank you for reporting. Yes. I have to deal with Node v8. Please stay tuned.
refs power-assert-js/power-assert#85
Sorry, something went wrong.
@leedm777 now fixed. Thank you for reporting!
Fix confirmed! Thanks for the quick response!
Successfully merging a pull request may close this issue.
I'm not seeing power-assert goodness when using Node.js v8. Using the example in the example directory:
I should have seen the super-awesome:
The text was updated successfully, but these errors were encountered: