From 4c99c085e7c2cc248c5198d6ab44a5ca59404845 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Mon, 6 Nov 2017 15:06:48 -0200 Subject: [PATCH] Allow for chromedriver patch version updates e2e-tests were failing on my environment when using chromedriver 2.33.0, but they work when using chromedriver 2.33.2. I decided to change the version to `^2.33.0` instead of `2.33.2` to allow future patch version updates to happen automatically and to follow the version definition used for the other packages used by WC. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 37f22dc6020..b03a45fabfd 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "babel-preset-stage-2": "^6.13.0", "chai": "^3.5.0", "chai-as-promised": "^6.0.0", - "chromedriver": "2.33.0", + "chromedriver": "^2.33.0", "config": "^1.24.0", "cross-env": "^3.0.0", "grunt": "~1.0.1",