-
Notifications
You must be signed in to change notification settings - Fork 67
fix: Incorrect name for runRequest's getProtocolMetadata accessor #1102
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
fix: Incorrect name for runRequest's getProtocolMetadata accessor #1102
Conversation
Codecov Report❌ Patch coverage is
❌ Your patch status has failed because the patch coverage (0.00%) is below the target coverage (100.00%). You can increase the patch coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## develop #1102 +/- ##
========================================
Coverage 41.98% 41.98%
========================================
Files 14 14
Lines 817 817
Branches 214 214
========================================
Hits 343 343
Misses 434 434
Partials 40 40
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| let erroredTest = false; | ||
|
|
||
| sandboxContext.on(`execution.error.${executionId}`, (_exec, err) => { | ||
| erroredTest = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed
| function (err) { | ||
| done(err); | ||
| sandboxContext.dispose(); | ||
| if (!erroredTest) { done(err); } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (err) done (err)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
| expect(grpcRequestResponse).to.have.property('statusCode', 0); | ||
| expect(grpcRequestResponse).to.have.property('responseTime', 100); | ||
| // Custom class property | ||
| expect(grpcRequestResponse).to.have.property('isCustomGRPCResponseClass', true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
No description provided.