Skip to content

Commit

Permalink
Update hammerhead (10.0.2) and testcafe (0.10.0-alpha1) versions (Dev…
Browse files Browse the repository at this point in the history
…Express#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
AlexanderMoskovkin authored and inikulin committed Oct 25, 2016
1 parent 28c4403 commit f98ab82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "testcafe",
"description": "Automated browser testing for the modern web development stack.",
"license": "MIT",
"version": "0.10.0-alpha",
"version": "0.10.0-alpha1",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
Expand Down Expand Up @@ -89,7 +89,7 @@
"stack-chain": "^1.3.6",
"strip-bom": "^2.0.0",
"testcafe-browser-tools": "^1.0.0",
"testcafe-hammerhead": "10.0.0",
"testcafe-hammerhead": "10.0.2",
"testcafe-legacy-api": "^2.0.0",
"testcafe-reporter-json": "^2.0.0",
"testcafe-reporter-list": "^2.0.0",
Expand Down
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;
});
})();
4 changes: 2 additions & 2 deletions test/server/data/client-fn-compilation/basic/expected.js
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;
});
})();

0 comments on commit f98ab82

Please sign in to comment.