We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fd371b commit 40ccf6aCopy full SHA for 40ccf6a
src/core/plugins/spec/actions.js
@@ -184,9 +184,9 @@ export const logRequest = (req) => {
184
185
// Actually fire the request via fn.execute
186
// (For debugging) and ease of testing
187
-export const executeRequest = (req) => ({fn, specActions}) => {
+export const executeRequest = (req) => ({fn, specActions, specSelectors}) => {
188
let { pathName, method } = req
189
- let parsedRequest = Object.assign({}, req)
+ let parsedRequest = Object.assign({ contextUrl: specSelectors.url() }, req)
190
if ( pathName && method ) {
191
parsedRequest.operationId = method.toLowerCase() + "-" + pathName
192
}
0 commit comments