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
Run tests with Node.js 16.9.0 (nodejs/node#40011).
Two of them fail because V8 changed the error message when trying to read properties from null or undefined.
null
undefined
103) Core _debug() outputs 500 on ext exception: actual expected "Cannot read propertiesproperty 'here' of null (reading 'here')" Expected "Cannot read properties of null (reading 'here')" to equal specified value: "Cannot read property 'here' of null" at /home/iojs/tmp/citgm_tmp/08e39eff-f7ef-4ead-92fa-cc5d18384c97/@hapi/hapi/test/core.js:338:44 231) handler execute() returns 500 on handler exception (next tick await): actual expected "Cannot read propertiesproperty 'here' of null (reading 'here')" Expected "Cannot read properties of null (reading 'here')" to equal specified value: "Cannot read property 'here' of null" at /home/iojs/tmp/citgm_tmp/08e39eff-f7ef-4ead-92fa-cc5d18384c97/@hapi/hapi/test/handler.js:76:44
https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/2754/nodes=fedora-latest-x64/testReport/junit/(root)/citgm/_hapi_hapi_v20_1_5/
Adapt the following assertions to support the new error message:
hapi/test/handler.js
Line 65 in c2107e9
hapi/test/core.js
Line 338 in c2107e9
The text was updated successfully, but these errors were encountered:
Nargonath
Successfully merging a pull request may close this issue.
Support plan
Context
What problem are you trying to solve?
Run tests with Node.js 16.9.0 (nodejs/node#40011).
Two of them fail because V8 changed the error message when trying to read properties from
null
orundefined
.https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/2754/nodes=fedora-latest-x64/testReport/junit/(root)/citgm/_hapi_hapi_v20_1_5/
Do you have a new or modified API suggestion to solve the problem?
Adapt the following assertions to support the new error message:
hapi/test/handler.js
Line 65 in c2107e9
hapi/test/core.js
Line 338 in c2107e9
The text was updated successfully, but these errors were encountered: