-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
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
[PR fails] Adding Stricter Type Checks For Input Object Types Fails only on Node8/9 #321
Comments
@isocroft Thanks for filling this issue! I think you are correct though. I'm fairly sure this problem is originating from the MQTT subscription package. I'll take a look... |
Node v8 and v9 are both deprecated. I think in an effort to save everyone, we shouldn't look too deeply into these broken tests. I will update the Travis config to reflect this. |
@Alan-Cha I looked into this some more and I found out that |
Hmmm but the tests still work with the other Node versions even though the |
Thanks a lot @Alan-Cha for the help. I will close out this issue since all the tests now pass |
With respect to my recent PR to this awesome project, I had been researching ways to add stricter type checks to a code-first code-generated graphql schema. I found this package and included it in the openapi-to-graphql package to sanitize and validate input types for OpenAPI v3.x.x parameters and requestBody via their OAS schema definitions.
All Tests Pass on Travis CI/CD (NodeJS v10/11):
All Tests Pass on Local (NodeJS v10.17.0)
As you see above: All tests on my local copy of the project pass (PS: I am running NodeJS v10.17.0) but on the Travis CI/CD it fails specifically on Node 8/9 and passes on Node 10/11/12.
I suspect that the MQTT subscriptions package is the reason why. But I wanted help in debugging the issue.
The text was updated successfully, but these errors were encountered: