testcafe-hammerhead
Advanced tools
Comparing version 9.0.2 to 9.0.3
@@ -153,2 +153,8 @@ 'use strict'; | ||
this.dest = parsedReqUrl.dest; | ||
// Browsers add a leading slash to the pathname part of url (GH-608) | ||
// For example: url http://www.trovigo.com?gd=GID12082014 will be converted | ||
// to http://www.trovigo.com/?gd=GID12082014 | ||
this.dest.partAfterHost = this.dest.partAfterHost[0] === '/' ? this.dest.partAfterHost : '/' + this.dest.partAfterHost; | ||
this.dest.domain = urlUtils.getDomain(this.dest); | ||
@@ -155,0 +161,0 @@ |
{ | ||
"name": "testcafe-hammerhead", | ||
"description": "A powerful web-proxy used as a core for the TestCafe testing framework (https://github.com/DevExpress/testcafe).", | ||
"version": "9.0.2", | ||
"version": "9.0.3", | ||
"homepage": "https://github.com/DevExpress/testcafe-hammerhead", | ||
@@ -6,0 +6,0 @@ "bugs": { |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
802802
10564