-
Notifications
You must be signed in to change notification settings - Fork 114
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
Added support for accessing execution location through script #1336
Conversation
8173e3a
to
0266d96
Compare
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## develop #1336 +/- ##
============================================
- Coverage 78.73% 42.30% -36.44%
============================================
Files 45 45
Lines 3316 3319 +3
Branches 947 950 +3
============================================
- Hits 2611 1404 -1207
- Misses 705 1915 +1210
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
0266d96
to
4acceff
Compare
it(`should have path as correct path for a request nested inside folder when printed from | ||
pre-request script of collection`, function () { |
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.
What is the convention in this repo? Should test names contain a newline?
it(`should have path as correct path for a request nested inside folder when printed from | |
pre-request script of collection`, function () { | |
it( | |
'should have path as correct path for a request nested inside folder when printed from pre-request script of collection', | |
function () { |
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.
@codenirvana can guide here, not able to find more such instances.
1035516
to
4acc8d0
Compare
Need to update the |
87f6dc5
to
b9bae6b
Compare
352f923
to
7b9b062
Compare
7b9b062
to
8726b9d
Compare
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.
Looks good. Can merge once postman-sandbox
is bumped.
@@ -457,6 +457,8 @@ module.exports = { | |||
shouldSkipExecution = true; | |||
}); | |||
|
|||
const currentEventItem = event.parent && event.parent(); |
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.
Can we add comment about why the current item is .parent
?
No description provided.