Skip to content

Commit b1faa0b

Browse files
committed
deepscan
1 parent f6c548f commit b1faa0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress/support/helper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ var waitFunction = function(startTime, waitTime, waitIncrement, continueCallback
7777
* @param {Function} callback - callback function
7878
*/
7979
function interceptAndCheckRequests(requestType, requestUrl, endPoint, requestParams, alias, callback) {
80-
requestType = requestType || "GET";
80+
// requestType = requestType || "GET";
8181
requestUrl = requestUrl || "https://your.domain.count.ly"; // TODO: might be needed in the future but not yet
8282
endPoint = endPoint || "/i";
8383
requestParams = requestParams || "?*";
8484
alias = alias || "getXhr";
8585

8686
cy.intercept(requestUrl + endPoint + requestParams, (req) => {
87-
const { url } = req;
87+
// const { url } = req;
8888
req.reply(200, {result: "Success"}, {
8989
"x-countly-rr": "2"
9090
});

0 commit comments

Comments
 (0)