-
Notifications
You must be signed in to change notification settings - Fork 672
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update hammerhead (10.0.2) and testcafe (0.10.0-alpha1) versions (#914)
* Update hammerhead (10.0.1) and testcafe (0.10.0-alpha1) versions * Update hammerhead to 10.0.2 * Fix server tests after babel submodules update
- Loading branch information
1 parent
28c4403
commit f98ab82
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
test/server/data/client-fn-compilation/basic/expected-node10.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
(function () { | ||
return (function () { | ||
var _window$location = __get$(window, "location"), | ||
hostname = __get$(_window$location, "hostname"), | ||
port = __get$(_window$location, "port"); | ||
return hostname + ':' + port; | ||
}); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
(function () { | ||
return (function () { | ||
var _window$location = __get$(window, "location"); | ||
var hostname = __get$(_window$location, "hostname"); | ||
var port = __get$(_window$location, "port"); | ||
var hostname = __get$(_window$location, "hostname"), | ||
port = __get$(_window$location, "port"); | ||
return hostname + ':' + port; | ||
}); | ||
})(); |